Package org.jdesktop.beansbinding
Class PropertyResolutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jdesktop.beansbinding.PropertyResolutionException
-
- All Implemented Interfaces:
java.io.Serializable
public class PropertyResolutionException extends java.lang.RuntimeException
PropertyResolutionExceptions
can be thrown at various points in the life cycle of aProperty
. Any time aProperty
encounters an exception in resolving a property, aPropertyResolutionException
can be thrown. For example, if aBeanProperty
encounters an exception while trying to resolve the "foo" property of an object via reflection, the exception is wrapped in aPropertyResolutionException
and is re-thrown.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyResolutionException(java.lang.String message)
Creates aPropertyResolutionException
with the given message.PropertyResolutionException(java.lang.String message, java.lang.Exception reason)
Creates aPropertyResolutionException
with the given message and cause.
-
-
-
Constructor Detail
-
PropertyResolutionException
public PropertyResolutionException(java.lang.String message)
Creates aPropertyResolutionException
with the given message.- Parameters:
message
- the exception's message
-
PropertyResolutionException
public PropertyResolutionException(java.lang.String message, java.lang.Exception reason)
Creates aPropertyResolutionException
with the given message and cause.- Parameters:
message
- the exception's messagereason
- the original exception that caused this exception to be thrown
-
-