Package jakarta.el

Class MethodNotFoundException

All Implemented Interfaces:
Serializable

public class MethodNotFoundException extends ELException
Thrown when a method could not be found while evaluating a MethodExpression.
Since:
Jakarta Server Pages 2.1
See Also:
  • Constructor Details

    • 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 exception)
      Creates a MethodNotFoundException with the given root cause.
      Parameters:
      exception - the originating cause of this exception
    • MethodNotFoundException

      public MethodNotFoundException(String pMessage, Throwable pRootCause)
      Creates a MethodNotFoundException with the given detail message and root cause.
      Parameters:
      pMessage - the detail message
      pRootCause - the originating cause of this exception