Class ArithmeticFunctionException

All Implemented Interfaces:
Serializable

public class ArithmeticFunctionException extends FunctionMetapathError
Represents an error that occurred while performing mathematical operations.
See Also:
  • Field Details

  • Constructor Details

    • ArithmeticFunctionException

      public ArithmeticFunctionException(int code, String message)
      Constructs a new exception with the provided code, message, and no cause.
      Parameters:
      code - the error code value
      message - the exception message
    • ArithmeticFunctionException

      public ArithmeticFunctionException(int code, String message, Throwable cause)
      Constructs a new exception with the provided code, message, and cause.
      Parameters:
      code - the error code value
      message - the exception message
      cause - the original exception cause
    • ArithmeticFunctionException

      public ArithmeticFunctionException(int code, Throwable cause)
      Constructs a new exception with the provided code, no message, and the cause.
      Parameters:
      code - the error code value
      cause - the original exception cause