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 theNumberFormatParser
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 Summary
Constructors Constructor Description NumberFormatParseException(String message)
Creates a new exception with the given message.NumberFormatParseException(String message, Throwable cause)
Creates a new exception with the given message and cause.NumberFormatParseException(Throwable cause)
Creates a new exception with the given cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
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.
-
-