Class FormatFunctionException

All Implemented Interfaces:
Serializable

public class FormatFunctionException extends FunctionMetapathError
FODF: Exceptions related to formatting errors in Metapath functions such as format-integer, format-number, format-dateTime, and format-date.
See Also:
  • Field Details

    • INVALID_FORMAT_TOKEN

      public static final int INVALID_FORMAT_TOKEN
      err:FODF1310: Raised when a format token in a picture string is invalid.
      See Also:
  • Constructor Details

    • FormatFunctionException

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

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

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