Package com.imsl.math
Class OdeRungeKutta.DidNotConvergeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.imsl.IMSLException
com.imsl.math.OdeRungeKutta.DidNotConvergeException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- OdeRungeKutta
The iteration did not converge within the maximum number of steps allowed (default 500).
This can be an indication that the ODE system is stiff. This exception can also be
thrown if the error tolerance condition could not be met.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDidNotConvergeException(String message) Constructs aDidNotConvergeExceptionwith the specified detailed message.DidNotConvergeException(String key, Object[] arguments) Constructs aDidNotConvergeExceptionwith the specified detailed 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
-
DidNotConvergeException
Constructs aDidNotConvergeExceptionwith the specified detailed message. The detailed message is aStringthat describes this particular exception.- Parameters:
message- aStringcontaining the error message
-
DidNotConvergeException
Constructs aDidNotConvergeExceptionwith the specified detailed message. The detailed message is aStringthat describes this particular exception.- Parameters:
key- theStringkey of the error message in the resource bundlearguments- an array containing arguments used within the error message string
-