Class NoninvertibleTransformException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opengis.referencing.operation.TransformException
-
- org.opengis.referencing.operation.NoninvertibleTransformException
-
- All Implemented Interfaces:
java.io.Serializable
public class NoninvertibleTransformException extends TransformException
Thrown whenMathTransform.inverse()
is invoked but the transform can't be inverted.- Since:
- 1.0
- Version:
- 3.0
- See Also:
CoordinateOperationFactory
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial number for inter-operability with different versions.
-
Constructor Summary
Constructors Constructor Description NoninvertibleTransformException()
Construct an exception with no detail message.NoninvertibleTransformException(java.lang.String message)
Construct an exception with the specified detail message.NoninvertibleTransformException(java.lang.String message, java.lang.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
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number for inter-operability with different versions.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NoninvertibleTransformException
public NoninvertibleTransformException()
Construct an exception with no detail message.
-
NoninvertibleTransformException
public NoninvertibleTransformException(java.lang.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(java.lang.String message, java.lang.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.
-
-