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:
Serializable
public class PropertyResolutionException extends RuntimeException
PropertyResolutionExceptionscan be thrown at various points in the life cycle of aProperty. Any time aPropertyencounters an exception in resolving a property, aPropertyResolutionExceptioncan be thrown. For example, if aBeanPropertyencounters an exception while trying to resolve the "foo" property of an object via reflection, the exception is wrapped in aPropertyResolutionExceptionand is re-thrown.- Author:
- Shannon Hickey, Scott Violet
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyResolutionException(String message)Creates aPropertyResolutionExceptionwith the given message.PropertyResolutionException(String message, Exception reason)Creates aPropertyResolutionExceptionwith the given 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
-
-
-
-
Constructor Detail
-
PropertyResolutionException
public PropertyResolutionException(String message)
Creates aPropertyResolutionExceptionwith the given message.- Parameters:
message- the exception's message
-
-