FileDocCategorySizeDatePackage
MethodNotFoundException.javaAPI DocGlassfish v2 API2142Fri Feb 17 14:04:52 GMT 2006javax.el

MethodNotFoundException

public class MethodNotFoundException extends ELException
Thrown when a method could not be found while evaluating a {@link MethodExpression}.
see
MethodExpression
since
JSP 2.1

Fields Summary
Constructors Summary
public MethodNotFoundException()
Creates a MethodNotFoundException with no detail message.

        super ();
    
public MethodNotFoundException(String message)
Creates a MethodNotFoundException with the provided detail message.

param
message the detail message

        super (message);
    
public MethodNotFoundException(Throwable exception)
Creates a MethodNotFoundException with the given root cause.

param
exception the originating cause of this exception

        super (exception);
    
public MethodNotFoundException(String pMessage, Throwable pRootCause)
Creates a MethodNotFoundException with the given detail message and root cause.

param
pMessage the detail message
param
pRootCause the originating cause of this exception

        super (pMessage, pRootCause);
    
Methods Summary