Package com.irurueta.numerical
Class NumericalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.irurueta.numerical.NumericalException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EvaluationException,FittingException,IntegrationException,InterpolationException,InvalidBracketRangeException,LockedException,NotAvailableException,NotReadyException,OptimizationException,PolynomialsException,RobustEstimatorException,RootEstimationException,SignalProcessingException,SubsetSelectorException
Base class for all the exceptions in this package.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.NumericalException(String message) Constructor with String containing message.NumericalException(String message, Throwable cause) Constructor with message and cause.NumericalException(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
-
NumericalException
public NumericalException()Constructor. -
NumericalException
Constructor with String containing message.- Parameters:
message- Message indicating the cause of the exception.
-
NumericalException
Constructor with message and cause.- Parameters:
message- Message describing the cause of the exception.cause- Instance containing the cause of the exception.
-
NumericalException
Constructor with cause.- Parameters:
cause- Instance containing the cause of the exception.
-