Uses of Class
jakarta.faces.event.ExceptionQueuedEvent
-
Packages that use ExceptionQueuedEvent Package Description jakarta.faces.context -
-
Uses of ExceptionQueuedEvent in jakarta.faces.context
Methods in jakarta.faces.context that return ExceptionQueuedEvent Modifier and Type Method Description abstract ExceptionQueuedEvent
ExceptionHandler. getHandledExceptionQueuedEvent()
Return the firstExceptionQueuedEvent
handled by this handler.ExceptionQueuedEvent
ExceptionHandlerWrapper. getHandledExceptionQueuedEvent()
The default behavior of this method is to callExceptionHandler.getHandledExceptionQueuedEvent()
on the wrappedExceptionHandler
object.Methods in jakarta.faces.context that return types with arguments of type ExceptionQueuedEvent Modifier and Type Method Description abstract Iterable<ExceptionQueuedEvent>
ExceptionHandler. getHandledExceptionQueuedEvents()
The default implementation must return anIterable
over allExceptionQueuedEvent
s that have been handled by theExceptionHandler.handle()
method.Iterable<ExceptionQueuedEvent>
ExceptionHandlerWrapper. getHandledExceptionQueuedEvents()
The default behavior of this method is to callExceptionHandler.getHandledExceptionQueuedEvents()
on the wrappedExceptionHandler
object.abstract Iterable<ExceptionQueuedEvent>
ExceptionHandler. getUnhandledExceptionQueuedEvents()
Return anIterable
over allExceptionQueuedEvent
s that have not yet been handled by theExceptionHandler.handle()
method.Iterable<ExceptionQueuedEvent>
ExceptionHandlerWrapper. getUnhandledExceptionQueuedEvents()
The default behavior of this method is to callExceptionHandler.getUnhandledExceptionQueuedEvents()
on the wrappedExceptionHandler
object.
-