Package com.irurueta.algebra
Class AlgebraException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.irurueta.algebra.AlgebraException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DecomposerException
,LockedException
,NonSymmetricPositiveDefiniteMatrixException
,NotAvailableException
,NotReadyException
,RankDeficientMatrixException
,SingularMatrixException
,WrongSizeException
Base exception for all exception in the com.irurueta.algebra package
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructorAlgebraException
(String message) Constructor with String containing messageAlgebraException
(String message, Throwable cause) Constructor with message and causeAlgebraException
(Throwable cause) Constructor with cause -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AlgebraException
public AlgebraException()Constructor -
AlgebraException
Constructor with String containing message- Parameters:
message
- Message indicating the cause of the exception
-
AlgebraException
Constructor with message and cause- Parameters:
message
- Message describing the cause of the exceptioncause
- Instance containing the cause of the exception
-
AlgebraException
Constructor with cause- Parameters:
cause
- Instance containing the cause of the exception
-