Class MethodNotFoundException
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.MethodNotFoundException
- All Implemented Interfaces:
Serializable
Thrown when a method could not be found while evaluating a
MethodExpression
.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a MethodNotFoundException with no detail message.MethodNotFoundException
(String message) Creates a MethodNotFoundException with the provided detail message.MethodNotFoundException
(String message, Throwable cause) Creates a MethodNotFoundException with the given detail message and root cause.MethodNotFoundException
(Throwable cause) Creates a MethodNotFoundException 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
-
MethodNotFoundException
public MethodNotFoundException()Creates a MethodNotFoundException with no detail message. -
MethodNotFoundException
Creates a MethodNotFoundException with the provided detail message.- Parameters:
message
- the detail message
-
MethodNotFoundException
Creates a MethodNotFoundException with the given root cause.- Parameters:
cause
- the originating cause of this exception
-
MethodNotFoundException
Creates a MethodNotFoundException with the given detail message and root cause.- Parameters:
message
- the detail messagecause
- the originating cause of this exception
-