Class NoninvertibleMatrixException
Object
Throwable
Exception
TransformException
NoninvertibleTransformException
NoninvertibleMatrixException
- All Implemented Interfaces:
- Serializable
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
- See Also:
Defined in the sis-referencing module
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs 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 SummaryMethods inherited from class TransformExceptiongetLastCompletedTransform, setLastCompletedTransformMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
NoninvertibleMatrixExceptionpublic NoninvertibleMatrixException()Constructs a new exception with no message.
- 
NoninvertibleMatrixExceptionConstructs a new exception with the specified detail message.- Parameters:
- message- the detail message, or- nullif none.
 
- 
NoninvertibleMatrixExceptionConstructs a new exception with the specified detail message and cause.- Parameters:
- message- the detail message, or- nullif none.
- cause- the cause, or- nullif none.
 
 
-