Uses of Class
jakarta.faces.event.ExceptionQueuedEvent
-
Uses of ExceptionQueuedEvent in jakarta.faces.context
Modifier and TypeMethodDescriptionabstract ExceptionQueuedEvent
ExceptionHandler.getHandledExceptionQueuedEvent()
Return the firstExceptionQueuedEvent
handled by this handler.ExceptionHandlerWrapper.getHandledExceptionQueuedEvent()
The default behavior of this method is to callExceptionHandler.getHandledExceptionQueuedEvent()
on the wrappedExceptionHandler
object.Modifier and TypeMethodDescriptionabstract Iterable<ExceptionQueuedEvent>
ExceptionHandler.getHandledExceptionQueuedEvents()
The default implementation must return anIterable
over allExceptionQueuedEvent
s that have been handled by theExceptionHandler.handle()
method.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.ExceptionHandlerWrapper.getUnhandledExceptionQueuedEvents()
The default behavior of this method is to callExceptionHandler.getUnhandledExceptionQueuedEvents()
on the wrappedExceptionHandler
object.