java.lang.Object
java.lang.Throwable
java.lang.Exception
net.finmath.exception.CalculationException
- All Implemented Interfaces:
Serializable
- Version:
- 1.0
- Author:
- Christian Fries
- See Also:
- Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionA wrapper for exceptions associated with numerical algorithm of finmath libCalculationException(String message)
Create an exception with error message.CalculationException(String message, Throwable cause)
Create an exception from another exception with error message.CalculationException(Throwable cause)
Create an exception from another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CalculationException
public CalculationException()A wrapper for exceptions associated with numerical algorithm of finmath lib -
CalculationException
Create an exception with error message.- Parameters:
message
- The error message.
-
CalculationException
Create an exception from another exception.- Parameters:
cause
- The cause.
-
CalculationException
Create an exception from another exception with error message.- Parameters:
message
- The error message.cause
- The cause.
-