| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException com.jgoodies.binding.beans.PropertyException com.jgoodies.binding.beans.PropertyAccessException
PropertyAccessException | public PropertyAccessException(String message, Throwable cause)(Code) | | Constructs a new exception instance with the specified detail message
and cause.
Parameters: message - the detail message (which is saved for later retrievalby the PropertyAccessException.getMessage() method). Parameters: cause - the cause (which is saved for later retrieval by thePropertyAccessException.getCause() method). (A null value is permitted,and indicates that the cause is nonexistent or unknown.) |
createReadAccessException | public static PropertyAccessException createReadAccessException(Object bean, PropertyDescriptor propertyDescriptor, Throwable cause)(Code) | | Creates and returns a new PropertyAccessException instance for a failed
read access for the specified bean, property descriptor and cause.
Parameters: bean - the target bean Parameters: propertyDescriptor - describes the bean's property Parameters: cause - the Throwable that caused this exception an exception that describes a read access problem |
createWriteAccessException | public static PropertyAccessException createWriteAccessException(Object bean, Object value, PropertyDescriptor propertyDescriptor, Throwable cause)(Code) | | Creates and returns a new PropertyAccessException instance for a failed
write access for the specified bean, value, property descriptor and
cause.
Parameters: bean - the target bean Parameters: value - the value that could not be set Parameters: propertyDescriptor - describes the bean's property Parameters: cause - the Throwable that caused this exception an exception that describes a write access problem |
|
|