Module org.opengis.geoapi
Class NoninvertibleTransformException
Object
Throwable
Exception
TransformException
NoninvertibleTransformException
- All Implemented Interfaces:
Serializable
Thrown when
MathTransform.inverse()
is invoked but the transform cannot be inverted.- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct 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.Constructs an exception with the specified cause. -
Method Summary
Methods inherited from class org.opengis.referencing.operation.TransformException
getLastCompletedTransform, setLastCompletedTransform
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoninvertibleTransformException
public NoninvertibleTransformException()Construct an exception with no detail message. -
NoninvertibleTransformException
Construct an exception with the specified detail message.- Parameters:
message
- the detail message, saved for later retrieval by theThrowable.getMessage()
method.
-
NoninvertibleTransformException
Constructs an exception with the specified cause.- Parameters:
cause
- the cause, saved for later retrieval by theThrowable.getCause()
method.- Since:
- 3.1
-
NoninvertibleTransformException
Construct an exception with the specified detail message and cause. The cause is typically anotherNoninvertibleTransformException
emitted by Java2D.- Parameters:
message
- the detail message, saved for later retrieval by theThrowable.getMessage()
method.cause
- the cause, saved for later retrieval by theThrowable.getCause()
method.
-