public class PropertyResolutionException
extends java.lang.RuntimeException
PropertyResolutionExceptions can be thrown at various points in
the life cycle of a Property. Any time a Property
encounters an exception in resolving a property, a
PropertyResolutionException can be thrown. For example, if a
BeanProperty encounters an exception while trying to resolve
the "foo" property of an object via reflection, the exception is
wrapped in a PropertyResolutionException and is re-thrown.| Constructor | Description |
|---|---|
PropertyResolutionException(java.lang.String message) |
Creates a
PropertyResolutionException with the given message. |
PropertyResolutionException(java.lang.String message,
java.lang.Exception reason) |
Creates a
PropertyResolutionException with the given message
and cause. |
public PropertyResolutionException(java.lang.String message)
PropertyResolutionException with the given message.message - the exception's messagepublic PropertyResolutionException(java.lang.String message,
java.lang.Exception reason)
PropertyResolutionException with the given message
and cause.message - the exception's messagereason - the original exception that caused this exception
to be thrown