Class 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:
    Serialized Form
    • Constructor Detail

      • 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.