Class NoninvertibleMatrixException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opengis.referencing.operation.TransformException
org.opengis.referencing.operation.NoninvertibleTransformException
org.apache.sis.referencing.operation.matrix.NoninvertibleMatrixException
- All Implemented Interfaces:
Serializable
public class NoninvertibleMatrixException
extends org.opengis.referencing.operation.NoninvertibleTransformException
Thrown when a matrix cannot be inverted.
This may be because the matrix is singular, or because the matrix is not square.
Note:
This exception extends
NoninvertibleTransformException
because the matrices in this package
are used in Coordinate Operation Steps, in which case a singular matrix means that the
operation is not invertible.- Since:
- 0.4
- Version:
- 0.4
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
For cross-version compatibility. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with no message.NoninvertibleMatrixException
(String message) Constructs a new exception with the specified detail message.NoninvertibleMatrixException
(String message, Throwable cause) Constructs a new 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 serialVersionUIDFor cross-version compatibility.- See Also:
-
-
Constructor Details
-
NoninvertibleMatrixException
public NoninvertibleMatrixException()Constructs a new exception with no message. -
NoninvertibleMatrixException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message, ornull
if none.
-
NoninvertibleMatrixException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message, ornull
if none.cause
- the cause, ornull
if none.
-