Class ConvergenceException

All Implemented Interfaces:
Serializable

public class ConvergenceException extends NumericalException
Signals that an iterative procedure has failed to converge.
See Also:
  • Constructor Details

    • ConvergenceException

      public ConvergenceException()
      Constructs a ConvergenceException with "failed to converge" as its detail message.
    • ConvergenceException

      public ConvergenceException(int numIt)
      Constructs a ConvergenceException with a detail message that indicates the number of iterations tried.
      Parameters:
      numIt - the number of iterations before convergence failed.
    • ConvergenceException

      public ConvergenceException(String message)
      Constructs a ConvergenceException with the specified detail message. The error message string message can later be retrieved by the Throwable.getMessage() method of class Throwable.
      Parameters:
      message - the detail message.