Class MathConfigurationException

All Implemented Interfaces:
Serializable, MathThrowable

public class MathConfigurationException extends MathException implements Serializable
Signals a configuration problem with any of the factory methods.
See Also:
  • Constructor Details

    • MathConfigurationException

      public MathConfigurationException()
      Default constructor.
    • MathConfigurationException

      public MathConfigurationException(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
    • MathConfigurationException

      public MathConfigurationException(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
    • MathConfigurationException

      public MathConfigurationException(Throwable cause)
      Create an exception with a given root cause.
      Parameters:
      cause - the exception or error that caused this exception to be thrown
    • MathConfigurationException

      public MathConfigurationException(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
    • MathConfigurationException

      public MathConfigurationException(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