Package com.xinapse.numerical
Class NumericalException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.xinapse.numerical.NumericalException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConvergenceException
Signals that an error has occurred when performing a numerical operation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aNumericalExceptionwithout a detail message.NumericalException(String message) Constructs aNumericalExceptionwith the specified detail message. -
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()Constructs aNumericalExceptionwithout a detail message. -
NumericalException
Constructs aNumericalExceptionwith the specified detail message. The error message stringmessagecan later be retrieved by theThrowable.getMessage()method of classThrowable.- Parameters:
message- the detail message.
-