Module org.omnifaces
Package org.omnifaces.exceptionhandler
Class FacesMessageExceptionHandlerFactory
- java.lang.Object
-
- jakarta.faces.context.ExceptionHandlerFactory
-
- org.omnifaces.exceptionhandler.FacesMessageExceptionHandlerFactory
-
- All Implemented Interfaces:
FacesWrapper<ExceptionHandlerFactory>
public class FacesMessageExceptionHandlerFactory extends ExceptionHandlerFactory
This exception handler factory needs to be registered as follows infaces-config.xml
to get theFacesMessageExceptionHandler
to run:<factory> <exception-handler-factory> org.omnifaces.exceptionhandler.FacesMessageExceptionHandlerFactory </exception-handler-factory> </factory>
- Since:
- 1.8
- Author:
- Bauke Scholtz
- See Also:
FacesMessageExceptionHandler
-
-
Constructor Summary
Constructors Constructor Description FacesMessageExceptionHandlerFactory(ExceptionHandlerFactory wrapped)
Construct a new full ajax exception handler factory around the given wrapped factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExceptionHandler
getExceptionHandler()
Returns a new instance ofFacesMessageExceptionHandler
which wraps the original exception handler.-
Methods inherited from class jakarta.faces.context.ExceptionHandlerFactory
getWrapped
-
-
-
-
Constructor Detail
-
FacesMessageExceptionHandlerFactory
public FacesMessageExceptionHandlerFactory(ExceptionHandlerFactory wrapped)
Construct a new full ajax exception handler factory around the given wrapped factory.- Parameters:
wrapped
- The wrapped factory.
-
-
Method Detail
-
getExceptionHandler
public ExceptionHandler getExceptionHandler()
Returns a new instance ofFacesMessageExceptionHandler
which wraps the original exception handler.- Specified by:
getExceptionHandler
in classExceptionHandlerFactory
-
-