Class OptimizationException

All Implemented Interfaces:
Serializable

public class OptimizationException extends NumericalException
Raised when an optimizer cannot find a minimum on a function, usually because of lack of convergence.
See Also:
  • Constructor Details

    • OptimizationException

      public OptimizationException()
      Constructor.
    • OptimizationException

      public OptimizationException(String message)
      Constructor with String containing message.
      Parameters:
      message - Message indicating the cause of the exception.
    • OptimizationException

      public OptimizationException(String message, Throwable cause)
      Constructor with message and cause.
      Parameters:
      message - Message describing the cause of the exception.
      cause - Instance containing the cause of the exception.
    • OptimizationException

      public OptimizationException(Throwable cause)
      Constructor with cause.
      Parameters:
      cause - Instance containing the cause of the exception.