Class PropertyAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.axonframework.common.AxonException
org.axonframework.common.AxonNonTransientException
org.axonframework.common.AxonConfigurationException
org.axonframework.common.property.PropertyAccessException
- All Implemented Interfaces:
Serializable
Exception indicating that a predefined property is not accessible. Generally, this means that the property does not
conform to the accessibility requirements of the accessor.
- Since:
- 2.0
- Author:
- Maxim Fedorov, Allard Buijze
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPropertyAccessException(String message, Throwable cause) Initializes the PropertyAccessException with givenmessageandcause. -
Method Summary
Methods inherited from class org.axonframework.common.AxonNonTransientException
isCauseOfMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PropertyAccessException
Initializes the PropertyAccessException with givenmessageandcause.- Parameters:
message- The message describing the causecause- The underlying cause of the exception
-