Class MethodNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.camunda.bpm.engine.ProcessEngineException
-
- org.camunda.bpm.engine.impl.javax.el.ELException
-
- org.camunda.bpm.engine.impl.javax.el.MethodNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class MethodNotFoundException extends ELException
Thrown when a method could not be found while evaluating aMethodExpression
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MethodNotFoundException()
Creates a MethodNotFoundException with no detail message.MethodNotFoundException(java.lang.String message)
Creates a MethodNotFoundException with the provided detail message.MethodNotFoundException(java.lang.String message, java.lang.Throwable cause)
Creates a MethodNotFoundException with the given detail message and root cause.MethodNotFoundException(java.lang.Throwable cause)
Creates a MethodNotFoundException with the given root cause.
-
-
-
Constructor Detail
-
MethodNotFoundException
public MethodNotFoundException()
Creates a MethodNotFoundException with no detail message.
-
MethodNotFoundException
public MethodNotFoundException(java.lang.String message)
Creates a MethodNotFoundException with the provided detail message.- Parameters:
message
- the detail message
-
MethodNotFoundException
public MethodNotFoundException(java.lang.Throwable cause)
Creates a MethodNotFoundException with the given root cause.- Parameters:
cause
- the originating cause of this exception
-
MethodNotFoundException
public MethodNotFoundException(java.lang.String message, java.lang.Throwable cause)
Creates a MethodNotFoundException with the given detail message and root cause.- Parameters:
message
- the detail messagecause
- the originating cause of this exception
-
-