Class ConvergenceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.openspaces.core.internal.commons.math.MathException
org.openspaces.core.internal.commons.math.ConvergenceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FractionConversionException
Error thrown when a numerical computation can not be performed because the numerical result
failed to converge to a finite value.
- Version:
- $Revision: 811685 $ $Date: 2009-09-05 13:36:48 -0400 (Sat, 05 Sep 2009) $
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.ConvergenceException(String pattern, Object... arguments) Constructs an exception with specified formatted detail message.ConvergenceException(Throwable cause) Create an exception with a given root cause.ConvergenceException(Throwable cause, String pattern, Object... arguments) Constructs an exception with specified formatted detail message and root cause. -
Method Summary
Methods inherited from class org.openspaces.core.internal.commons.math.MathException
getArguments, getLocalizedMessage, getMessage, getMessage, getPattern, printStackTrace, printStackTraceMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConvergenceException
public ConvergenceException()Default constructor. -
ConvergenceException
Constructs an exception with specified formatted detail message. Message formatting is delegated toMessageFormat.- Parameters:
pattern- format specifierarguments- format arguments- Since:
- 1.2
-
ConvergenceException
Create an exception with a given root cause.- Parameters:
cause- the exception or error that caused this exception to be thrown
-
ConvergenceException
Constructs an exception with specified formatted detail message and root cause. Message formatting is delegated toMessageFormat.- Parameters:
cause- the exception or error that caused this exception to be thrownpattern- format specifierarguments- format arguments- Since:
- 1.2
-