Class PropertyNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.binding.expression.EvaluationException
org.springframework.binding.expression.PropertyNotFoundException
- All Implemented Interfaces:
Serializable
An evaluation exception indicating a expression that references a property failed to evaluate because the property
could not be found.
- Author:
- Keith Donald
- See Also:
-
Constructor Summary
ConstructorDescriptionPropertyNotFoundException
(Class<?> contextClass, String property, Throwable cause) Creates a new property not found exception -
Method Summary
Methods inherited from class org.springframework.binding.expression.EvaluationException
getContextClass, getExpressionString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PropertyNotFoundException
Creates a new property not found exception- Parameters:
contextClass
- the class of object upon which property evaluation was attemptedproperty
- the property that could not be foundcause
- root cause of the failure
-