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
ConstructorDescriptionConstructs aNumericalException
without a detail message.NumericalException
(String message) Constructs aNumericalException
with 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 aNumericalException
without a detail message. -
NumericalException
Constructs aNumericalException
with the specified detail message. The error message stringmessage
can later be retrieved by theThrowable.getMessage()
method of classThrowable
.- Parameters:
message
- the detail message.
-