Package joptsimple
Class ValueConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
joptsimple.ValueConversionException
- All Implemented Interfaces:
Serializable
Thrown by
ValueConverter
s when problems occur in converting string values to other Java types.- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionValueConversionException
(String message) Creates a new exception with the specified detail message.ValueConversionException
(String message, Throwable cause) Creates a new exception with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
ValueConversionException
Creates a new exception with the specified detail message.- Parameters:
message
- the detail message
-
ValueConversionException
Creates a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the original exception
-