Class PropertyNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.flowable.common.engine.impl.javax.el.ELException
org.flowable.common.engine.impl.javax.el.PropertyNotFoundException
- All Implemented Interfaces:
Serializable
Thrown when a property could not be found while evaluating a
ValueExpression
or
MethodExpression
. For example, this could be triggered by an index out of bounds while
setting an array value, or by an unreadable property while getting the value of a JavaBeans
property.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a PropertyNotFoundException with no detail message.PropertyNotFoundException
(String message) Creates a PropertyNotFoundException with the provided detail message.PropertyNotFoundException
(String message, Throwable cause) Creates a PropertyNotFoundException with the given detail message and root cause.Creates a PropertyNotFoundException with the given root cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PropertyNotFoundException
public PropertyNotFoundException()Creates a PropertyNotFoundException with no detail message. -
PropertyNotFoundException
Creates a PropertyNotFoundException with the provided detail message.- Parameters:
message
- the detail message
-
PropertyNotFoundException
Creates a PropertyNotFoundException with the given root cause.- Parameters:
cause
- the originating cause of this exception
-
PropertyNotFoundException
Creates a PropertyNotFoundException with the given detail message and root cause.- Parameters:
message
- the detail messagecause
- the originating cause of this exception
-