java.lang.Object
java.lang.Throwable
java.lang.Exception
net.finmath.optimizer.SolverException
- All Implemented Interfaces:
Serializable
Exception thrown by solvers
net.finmath.rootfinder
or net.finmath.optimizer
.- Version:
- 1.0
- Author:
- Christian Fries
- See Also:
- Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionSolverException(String message)
Create an exception with error message.SolverException(String message, Throwable cause)
Create an exception from another exception with error message.SolverException(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
-
SolverException
Create an exception with error message.- Parameters:
message
- The error message.
-
SolverException
Create an exception from another exception.- Parameters:
cause
- The cause.
-
SolverException
Create an exception from another exception with error message.- Parameters:
message
- The error message.cause
- The cause.
-