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:
Serializable
public class MethodNotFoundException extends ELException
Thrown when a method could not be found while evaluating aMethodExpression
.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.camunda.bpm.engine.ProcessEngineException
code
-
-
Constructor Summary
Constructors Constructor Description MethodNotFoundException()
Creates 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 org.camunda.bpm.engine.ProcessEngineException
getCode, setCode
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MethodNotFoundException
public MethodNotFoundException()
Creates a MethodNotFoundException with no detail message.
-
MethodNotFoundException
public MethodNotFoundException(String message)
Creates a MethodNotFoundException with the provided detail message.- Parameters:
message
- the detail message
-
MethodNotFoundException
public MethodNotFoundException(Throwable cause)
Creates a MethodNotFoundException with the given root cause.- Parameters:
cause
- the originating cause of this exception
-
-