Class NoninvertibleTransformException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opengis.referencing.operation.TransformException
org.opengis.referencing.operation.NoninvertibleTransformException
- All Implemented Interfaces:
Serializable
Thrown when
MathTransform.inverse()
is
invoked but the transform can't be inverted.- Since:
- 1.0
- Version:
- 3.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
Serial number for inter-operability with different versions. -
Constructor Summary
ConstructorsConstructorDescriptionConstruct 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 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
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for inter-operability with different versions.- See Also:
-
-
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. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
NoninvertibleTransformException
Construct an exception with the specified detail message and cause. The cause is typically an otherinvalid reference
java.lang.geom.NoninvertibleTransformException
- 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.
-