public class InvalidContextException extends VisADException
| Constructor and Description |
|---|
InvalidContextException()
Constructs a
InvalidContextException with no specified detail
message. |
InvalidContextException(Context context)
Constructs a
InvalidContextException with a given Context
and cause. |
InvalidContextException(Context context,
java.lang.Throwable cause)
Constructs a
InvalidContextException with the specified context
and cause. |
InvalidContextException(java.lang.String message)
Constructs a
InvalidContextException with the specified detail
message. |
InvalidContextException(java.lang.String message,
java.lang.Throwable cause)
Constructs a
InvalidContextException with the specified detail
message and cause. |
InvalidContextException(java.lang.Throwable cause)
Constructs a
InvalidContextException with the specified cause. |
public InvalidContextException()
InvalidContextException with no specified detail
message.public InvalidContextException(java.lang.String message)
InvalidContextException with the specified detail
message.message - Detail message.public InvalidContextException(java.lang.String message,
java.lang.Throwable cause)
InvalidContextException with the specified detail
message and cause.message - Detail message.cause - Cause of the exception. null indicates that the
cause is nonexistent or unknown.public InvalidContextException(java.lang.Throwable cause)
InvalidContextException with the specified cause.cause - Cause of the exception. null indicates that the
cause is nonexistent or unknown.public InvalidContextException(Context context)
InvalidContextException with a given Context
and cause.context - Exception context. Should not be null.public InvalidContextException(Context context, java.lang.Throwable cause)
InvalidContextException with the specified context
and cause.context - Exception context. Should not be null.cause - Cause of the exception. null indicates that the
cause is nonexistent or unknown.