Class NumberFormatParseException

java.lang.Object
java.lang.Throwable
java.lang.Exception
de.xima.fc.form.common.number_format.NumberFormatParseException
All Implemented Interfaces:
Serializable

public final class NumberFormatParseException extends Exception
Thrown by the NumberFormatParser when the input string could not be parsed, usually because it is not a valid numeric string.
Since:
8.2.2
See Also:
  • Constructor Details

    • NumberFormatParseException

      public NumberFormatParseException(String message)
      Creates a new exception with the given message.
      Parameters:
      message - The message.
    • NumberFormatParseException

      public NumberFormatParseException(String message, Throwable cause)
      Creates a new exception with the given message and cause.
      Parameters:
      message - The message.
      cause - The cause.
    • NumberFormatParseException

      public NumberFormatParseException(Throwable cause)
      Creates a new exception with the given cause.
      Parameters:
      cause - The cause.