Class NoninvertibleMatrixException

All Implemented Interfaces:
Serializable

public class NoninvertibleMatrixException extends NoninvertibleTransformException
Thrown when a matrix cannot be inverted. This may be because the matrix is singular, or because the matrix is not square.

Usage note

This exception extends Noninvertible­Transform­Exception 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:
  • Constructor Details

    • NoninvertibleMatrixException

      public NoninvertibleMatrixException()
      Constructs a new exception with no message.
    • NoninvertibleMatrixException

      public NoninvertibleMatrixException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - the detail message, or null if none.
    • NoninvertibleMatrixException

      public NoninvertibleMatrixException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message, or null if none.
      cause - the cause, or null if none.