Class ConvergenceException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FractionConversionException

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.
Version:
$Revision: 811685 $ $Date: 2009-09-05 13:36:48 -0400 (Sat, 05 Sep 2009) $
See Also:
  • Constructor Details

    • ConvergenceException

      public ConvergenceException()
      Default constructor.
    • ConvergenceException

      public ConvergenceException(String 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:
      1.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

      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