Uses of Class
jakarta.faces.context.ExceptionHandler
-
Packages that use ExceptionHandler Package Description jakarta.faces.context -
-
Uses of ExceptionHandler in jakarta.faces.context
Subclasses of ExceptionHandler in jakarta.faces.context Modifier and Type Class Description class
ExceptionHandlerWrapper
Provides a simple implementation ofExceptionHandler
that can be subclassed by developers wishing to provide specialized behavior to an existingExceptionHandler
instance.Methods in jakarta.faces.context that return ExceptionHandler Modifier and Type Method Description abstract ExceptionHandler
ExceptionHandlerFactory. getExceptionHandler()
Create and return a A newExceptionHandler
instance.ExceptionHandler
FacesContext. getExceptionHandler()
Return theExceptionHandler
for this request.ExceptionHandler
FacesContextWrapper. getExceptionHandler()
The default behavior of this method is to callFacesContext.getExceptionHandler()
on the wrappedFacesContext
object.ExceptionHandler
ExceptionHandlerWrapper. getWrapped()
Methods in jakarta.faces.context with parameters of type ExceptionHandler Modifier and Type Method Description void
FacesContext. setExceptionHandler(ExceptionHandler exceptionHandler)
Set theExceptionHandler
for this request.void
FacesContextWrapper. setExceptionHandler(ExceptionHandler exceptionHandler)
The default behavior of this method is to callFacesContext.setExceptionHandler(ExceptionHandler)
on the wrappedFacesContext
object.Constructors in jakarta.faces.context with parameters of type ExceptionHandler Constructor Description ExceptionHandlerWrapper(ExceptionHandler wrapped)
If this exception handler has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.
-