Uses of Class
jakarta.el.ELException
-
Packages that use ELException Package Description jakarta.el Provides the API for Jakarta Expression Language 5.0jakarta.faces.application jakarta.faces.view.facelets -
-
Uses of ELException in jakarta.el
Subclasses of ELException in jakarta.el Modifier and Type Class Description class
MethodNotFoundException
Thrown when a method could not be found while evaluating aMethodExpression
.class
PropertyNotFoundException
Thrown when a property could not be found while evaluating aValueExpression
orMethodExpression
.class
PropertyNotWritableException
Thrown when a property could not be written to while setting the value on aValueExpression
.Methods in jakarta.el that throw ELException Modifier and Type Method Description void
ELManager. importClass(String className)
Import a class.void
ImportHandler. importClass(String name)
Import a class.void
ELManager. importStatic(String staticMemberName)
Import a static field or method.void
ImportHandler. importStatic(String name)
Import a static field or method.Object
LambdaExpression. invoke(ELContext elContext, Object... args)
Invoke the encapsulated Lambda expression. -
Uses of ELException in jakarta.faces.application
Methods in jakarta.faces.application that throw ELException Modifier and Type Method Description <T> T
Application. evaluateExpressionGet(FacesContext context, String expression, Class<? extends T> expectedType)
Get a value by evaluating an expression.<T> T
ApplicationWrapper. evaluateExpressionGet(FacesContext context, String expression, Class<? extends T> expectedType)
The default behavior of this method is to callApplication.evaluateExpressionGet(jakarta.faces.context.FacesContext, String, Class)
on the wrappedApplication
object. -
Uses of ELException in jakarta.faces.view.facelets
Methods in jakarta.faces.view.facelets that throw ELException Modifier and Type Method Description void
DelegatingMetaTagHandler. applyNextHandler(FaceletContext ctx, UIComponent c)
Invoke theapply()
method on this instance'sTagHandler.nextHandler
.
-