Class ConvergenceException

All Implemented Interfaces:
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:
  • Constructor Details

    • ConvergenceException

      public ConvergenceException()
      Default constructor.
    • ConvergenceException

      @Deprecated public ConvergenceException(String pattern, Object... arguments)
      Deprecated.
      Constructs an exception with specified formatted detail message. Message formatting is delegated to MessageFormat.
      Parameters:
      pattern - format specifier
      arguments - format arguments
      Since:
      1.2
    • ConvergenceException

      public ConvergenceException(Localizable pattern, Object... arguments)
      Constructs an exception with specified formatted detail message. Message formatting is delegated to MessageFormat.
      Parameters:
      pattern - format specifier
      arguments - format arguments
      Since:
      2.2
    • ConvergenceException

      public ConvergenceException(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(Throwable cause, String pattern, Object... arguments)
      Constructs an exception with specified formatted detail message and root cause. Message formatting is delegated to MessageFormat.
      Parameters:
      cause - the exception or error that caused this exception to be thrown
      pattern - format specifier
      arguments - format arguments
      Since:
      1.2
    • ConvergenceException

      public ConvergenceException(Throwable cause, Localizable pattern, Object... arguments)
      Constructs an exception with specified formatted detail message and root cause. Message formatting is delegated to MessageFormat.
      Parameters:
      cause - the exception or error that caused this exception to be thrown
      pattern - format specifier
      arguments - format arguments
      Since:
      2.2