Package org.flag4j.util.exceptions
Class LinearAlgebraException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.flag4j.util.exceptions.LinearAlgebraException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SingularMatrixException
,TensorShapeException
An exception which is thrown when a linear algebra related error occurs at runtime.
- See Also:
-
Constructor Summary
ConstructorDescriptionLinearAlgebraException
(String errMsg) Creates aLinearAlgebraException
to be thrown for a linear algebra related error. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
LinearAlgebraException
Creates aLinearAlgebraException
to be thrown for a linear algebra related error.- Parameters:
errMsg
- Error message for the exception.
-