Package jakarta.el
Class MethodNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.el.ELException
-
- jakarta.el.MethodNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class MethodNotFoundException extends ELException
Thrown when a method could not be found while evaluating aMethodExpression
.- Since:
- Jakarta Server Pages 2.1
- See Also:
MethodExpression
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description MethodNotFoundException()
Creates aMethodNotFoundException
with no detail message.MethodNotFoundException(java.lang.String message)
Creates aMethodNotFoundException
with the provided detail message.MethodNotFoundException(java.lang.String pMessage, java.lang.Throwable pRootCause)
Creates aMethodNotFoundException
with the given detail message and root cause.MethodNotFoundException(java.lang.Throwable exception)
Creates aMethodNotFoundException
with the given root cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MethodNotFoundException
public MethodNotFoundException()
Creates aMethodNotFoundException
with no detail message.
-
MethodNotFoundException
public MethodNotFoundException(java.lang.String message)
Creates aMethodNotFoundException
with the provided detail message.- Parameters:
message
- the detail message
-
MethodNotFoundException
public MethodNotFoundException(java.lang.Throwable exception)
Creates aMethodNotFoundException
with the given root cause.- Parameters:
exception
- the originating cause of this exception
-
MethodNotFoundException
public MethodNotFoundException(java.lang.String pMessage, java.lang.Throwable pRootCause)
Creates aMethodNotFoundException
with the given detail message and root cause.- Parameters:
pMessage
- the detail messagepRootCause
- the originating cause of this exception
-
-