Package com.iizix.prop
Class ValueConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.iizix.prop.PropException
com.iizix.prop.ValueConversionException
- All Implemented Interfaces:
Serializable
Exception thrown when a
Value
in a VirtualSpace Field property runs into a conversion problem, e.g. when retrieving a Date value to a Binary value, or when no available Value processor is present.- Author:
- Christopher Mindus
- See Also:
Constructor Summary
ConstructorDescriptionValueConversionException
(GProp<?> property, String message) Creates a property exception with a message.ValueConversionException
(GProp<?> property, String message, Throwable cause) Creates a property exception with a message and an exception cause.Method Summary
Methods inherited from class com.iizix.prop.PropException
getProperty, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
Constructor Details
ValueConversionException
Creates a property exception with a message.- Parameters:
message
- The detail message.- Throws:
NullPointerException
- Ifproperty
parameter is null.
ValueConversionException
Creates a property exception with a message and an exception cause.- Parameters:
property
- The originator property.message
- The detail message.cause
- The real causing exception, null for none.- Throws:
NullPointerException
- Ifproperty
parameter is null.