Class ConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.configuration2.ex.ConfigurationRuntimeException
org.apache.commons.configuration2.ex.ConversionException
- All Implemented Interfaces:
Serializable
Thrown when a property is incompatible with the type requested.
- Since:
- 1.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newConversionException
without specified detail message.ConversionException
(String message) Constructs a newConversionException
with specified detail message.ConversionException
(String message, Throwable cause) Constructs a newConversionException
with specified detail message and nestedThrowable
.ConversionException
(Throwable cause) Constructs a newConversionException
with specified nestedThrowable
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConversionException
public ConversionException()Constructs a newConversionException
without specified detail message. -
ConversionException
Constructs a newConversionException
with specified detail message.- Parameters:
message
- the error message
-
ConversionException
Constructs a newConversionException
with specified detail message and nestedThrowable
.- Parameters:
message
- the error messagecause
- the exception or error that caused this exception to be thrown
-
ConversionException
Constructs a newConversionException
with specified nestedThrowable
.- Parameters:
cause
- the exception or error that caused this exception to be thrown
-