Class NoninvertibleTransformException
- Object
-
- Throwable
-
- Exception
-
- TransformException
-
- NoninvertibleTransformException
-
- All Implemented Interfaces:
Serializable
public class NoninvertibleTransformException extends TransformException
Thrown whenMathTransform.inverse()
is invoked but the transform can't be inverted.- Since:
- GeoAPI 1.0
- Author:
- Martin Desruisseaux (IRD)
- See Also:
CoordinateOperationFactory
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoninvertibleTransformException()
Construct an exception with no detail message.NoninvertibleTransformException(String message)
Construct an exception with the specified detail message.NoninvertibleTransformException(String message, Throwable cause)
Construct an exception with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class TransformException
fillInStackTrace, getLastCompletedTransform, runWithoutStackTraces, setLastCompletedTransform
-
Methods inherited from class Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NoninvertibleTransformException
public NoninvertibleTransformException()
Construct an exception with no detail message.
-
NoninvertibleTransformException
public NoninvertibleTransformException(String message)
Construct an exception with the specified detail message.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
NoninvertibleTransformException
public NoninvertibleTransformException(String message, Throwable cause)
Construct an exception with the specified detail message and cause. The cause is typically an otherjava.lang.geom.NoninvertibleTransformException
emitted by Java2D.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- The cause for this exception. The cause is saved for later retrieval by theThrowable.getCause()
method.
-
-