public class VisADException
extends java.lang.Exception
VisADException is the superclass of all exceptions defined within
the VisAD package.| Constructor and Description |
|---|
VisADException()
Constructs a
VisADException with no specified detail message. |
VisADException(java.lang.String message)
Constructs a
VisADException with the specified detail message. |
VisADException(java.lang.String message,
java.lang.Throwable cause)
Constructs a
VisADException with the specified detail message
and cause. |
VisADException(java.lang.Throwable cause)
Constructs a
VisADException with the specified cause. |
public VisADException()
VisADException with no specified detail message.public VisADException(java.lang.String message)
VisADException with the specified detail message.message - Detail message.public VisADException(java.lang.String message,
java.lang.Throwable cause)
VisADException 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 VisADException(java.lang.Throwable cause)
VisADException with the specified cause.cause - Cause of the exception. null indicates that the
cause is nonexistent or unknown.