Package org.apache.cayenne.reflect
Class PropertyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.cayenne.CayenneRuntimeException
org.apache.cayenne.reflect.PropertyException
- All Implemented Interfaces:
Serializable
public class PropertyException extends CayenneRuntimeException
An unchecked exception thrown on errors during property access, either within a
Accessor or a Property.
- Since:
- 3.0
- See Also:
- Serialized Form
-
Field Summary
-
Constructor Summary
Constructors Constructor Description PropertyException(String messageFormat, Object... messageArgs)
PropertyException(String messageFormat, Throwable cause, Object... messageArgs)
PropertyException(String messageFormat, Accessor accessor, Object source, Object... messageArgs)
PropertyException(String messageFormat, Accessor accessor, Object source, Throwable cause, Object... messageArgs)
PropertyException(String messageFormat, PropertyDescriptor property, Object source, Object... messageArgs)
PropertyException(String messageFormat, PropertyDescriptor property, Object source, Throwable cause, Object... messageArgs)
-
Method Summary
Modifier and Type Method Description Accessor
getAccessor()
Returns property descriptor that was used to access the property.PropertyDescriptor
getProperty()
Object
getSource()
Returns an object that caused an error.Methods inherited from class org.apache.cayenne.CayenneRuntimeException
getExceptionLabel, getMessage, getUnlabeledMessage
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
property
-
accessor
-
source
-
-
Constructor Details
-
PropertyException
-
PropertyException
-
PropertyException
-
PropertyException
-
PropertyException
public PropertyException(String messageFormat, PropertyDescriptor property, Object source, Object... messageArgs) -
PropertyException
public PropertyException(String messageFormat, PropertyDescriptor property, Object source, Throwable cause, Object... messageArgs)
-
-
Method Details
-
getAccessor
Returns property descriptor that was used to access the property. It may be null. -
getProperty
-
getSource
Returns an object that caused an error.
-