Class MethodNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.el.ELException
jakarta.el.MethodNotFoundException
- All Implemented Interfaces:
Serializable
Thrown when a method referenced in an EL expression cannot be found on the target object.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a MethodNotFoundException with no detail message.MethodNotFoundException(String message) Constructs a MethodNotFoundException with the specified detail message.MethodNotFoundException(String message, Throwable cause) Constructs a MethodNotFoundException with the specified detail message and cause.MethodNotFoundException(Throwable cause) Constructs a MethodNotFoundException with the specified cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MethodNotFoundException
public MethodNotFoundException()Constructs a MethodNotFoundException with no detail message. -
MethodNotFoundException
Constructs a MethodNotFoundException with the specified detail message.- Parameters:
message- the detail message
-
MethodNotFoundException
Constructs a MethodNotFoundException with the specified cause.- Parameters:
cause- the cause of this exception
-
MethodNotFoundException
-