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 SummaryConstructors 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- 
MethodNotFoundExceptionpublic MethodNotFoundException() Creates a MethodNotFoundException with no detail message.
 - 
MethodNotFoundExceptionpublic MethodNotFoundException(java.lang.String message) Creates a MethodNotFoundException with the provided detail message.- Parameters:
- message- the detail message
 
 - 
MethodNotFoundExceptionpublic MethodNotFoundException(java.lang.Throwable cause) Creates a MethodNotFoundException with the given root cause.- Parameters:
- cause- the originating cause of this exception
 
 - 
MethodNotFoundExceptionpublic MethodNotFoundException(java.lang.String message, java.lang.Throwable cause)Creates a MethodNotFoundException with the given detail message and root cause.- Parameters:
- message- the detail message
- cause- the originating cause of this exception
 
 
- 
 
-