public class CoordinateSystemException extends VisADException
CoordinateSystemException is an exception for a bad VisAD
CoordinateSystem.| Constructor and Description |
|---|
CoordinateSystemException()
Constructs a
CoordinateSystemException with no specified detail message. |
CoordinateSystemException(CoordinateSystem cs1,
CoordinateSystem cs2)
Construct a
CoordinateSystemException for unequal
CoordinateSystems. |
CoordinateSystemException(CoordinateSystem cs1,
CoordinateSystem cs2,
java.lang.Throwable cause)
Construct a
CoordinateSystemException for unequal
CoordinateSystems. |
CoordinateSystemException(java.lang.String message)
Constructs a
CoordinateSystemException with the specified detail message. |
CoordinateSystemException(java.lang.String message,
java.lang.Throwable cause)
Constructs a
CoordinateSystemException with the specified detail message
and cause. |
CoordinateSystemException(java.lang.Throwable cause)
Constructs a
CoordinateSystemException with the specified cause. |
public CoordinateSystemException()
CoordinateSystemException with no specified detail message.public CoordinateSystemException(java.lang.String message)
CoordinateSystemException with the specified detail message.message - Detail message.public CoordinateSystemException(java.lang.String message,
java.lang.Throwable cause)
CoordinateSystemException 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 CoordinateSystemException(java.lang.Throwable cause)
CoordinateSystemException with the specified cause.cause - Cause of the exception. null indicates that the
cause is nonexistent or unknown.public CoordinateSystemException(CoordinateSystem cs1, CoordinateSystem cs2)
CoordinateSystemException for unequal
CoordinateSystems.cs1 - First coordinate system. null is allowed.cs2 - Second coordinate system. null is allowed.public CoordinateSystemException(CoordinateSystem cs1, CoordinateSystem cs2, java.lang.Throwable cause)
CoordinateSystemException for unequal
CoordinateSystems.cs1 - First coordinate system. null is allowed.cs2 - Second coordinate system. null is allowed.cause - Cause of the exception. null indicates that the
cause is nonexistent or unknown.