Class SingularMatrixException

  • All Implemented Interfaces:
    Serializable

    public class SingularMatrixException
    extends RuntimeException
    Matrix is singular, and thus an inverse is not available.

    This is a Throwable version of !@link java.awt.geom.NoninvertibleTransformException}

    Author:
    jody
    See Also:
    NoninvertibleTransformException, Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SingularMatrixException​(NoninvertibleTransformException nonInvertable)  
      SingularMatrixException​(String message)
      Matrix is singular (often indicating an inverse is not available)
      SingularMatrixException​(String message, Throwable cause)
      Construct using provided message and cause
    • Method Summary

      • Methods inherited from class Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • SingularMatrixException

        public SingularMatrixException​(String message)
        Matrix is singular (often indicating an inverse is not available)
      • SingularMatrixException

        public SingularMatrixException​(String message,
                                       Throwable cause)
        Construct using provided message and cause
      • SingularMatrixException

        public SingularMatrixException​(NoninvertibleTransformException nonInvertable)