Package org.apache.commons.math
Class ConvergenceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.math.MathException
-
- org.apache.commons.math.ConvergenceException
-
- All Implemented Interfaces:
java.io.Serializable
,MathThrowable
- Direct Known Subclasses:
FractionConversionException
,MaxEvaluationsExceededException
,MaxIterationsExceededException
,OptimizationException
public class ConvergenceException extends MathException
Error thrown when a numerical computation can not be performed because the numerical result failed to converge to a finite value.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConvergenceException()
Default constructor.ConvergenceException(java.lang.String pattern, java.lang.Object... arguments)
Deprecated.as of 2.2 replaced byConvergenceException(Localizable, Object...)
ConvergenceException(java.lang.Throwable cause)
Create an exception with a given root cause.ConvergenceException(java.lang.Throwable cause, java.lang.String pattern, java.lang.Object... arguments)
Deprecated.as of 2.2 replaced byConvergenceException(Throwable, Localizable, Object...)
ConvergenceException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... arguments)
Constructs an exception with specified formatted detail message and root cause.ConvergenceException(Localizable pattern, java.lang.Object... arguments)
Constructs an exception with specified formatted detail message.
-
Method Summary
-
Methods inherited from class org.apache.commons.math.MathException
getArguments, getGeneralPattern, getLocalizedMessage, getMessage, getMessage, getPattern, getSpecificPattern, printStackTrace, printStackTrace
-
-
-
-
Constructor Detail
-
ConvergenceException
public ConvergenceException()
Default constructor.
-
ConvergenceException
@Deprecated public ConvergenceException(java.lang.String pattern, java.lang.Object... arguments)
Deprecated.as of 2.2 replaced byConvergenceException(Localizable, Object...)
Constructs an exception with specified formatted detail message. Message formatting is delegated toMessageFormat
.- Parameters:
pattern
- format specifierarguments
- format arguments- Since:
- 1.2
-
ConvergenceException
public ConvergenceException(Localizable pattern, java.lang.Object... arguments)
Constructs an exception with specified formatted detail message. Message formatting is delegated toMessageFormat
.- Parameters:
pattern
- format specifierarguments
- format arguments- Since:
- 2.2
-
ConvergenceException
public ConvergenceException(java.lang.Throwable cause)
Create an exception with a given root cause.- Parameters:
cause
- the exception or error that caused this exception to be thrown
-
ConvergenceException
@Deprecated public ConvergenceException(java.lang.Throwable cause, java.lang.String pattern, java.lang.Object... arguments)
Deprecated.as of 2.2 replaced byConvergenceException(Throwable, Localizable, Object...)
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
-
ConvergenceException
public ConvergenceException(java.lang.Throwable cause, Localizable pattern, java.lang.Object... arguments)
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:
- 2.2
-
-