java.lang.Objectjavax.faces.context.ExceptionHandlerFactory
All Implemented Interfaces:
FacesWrapper
Direct Known Subclasses:
PreJsf2ExceptionHandlerFactory
ExceptionHandlerFactory is a factory object that creates (if needed) and returns a new ExceptionHandler instance.
There must be one ExceptionHandlerFactory
instance per web
application that is utilizing JavaServer Faces. This instance can be
acquired, in a portable manner, by calling:
ExceptionHandlerFactory factory = (ExceptionHandlerFactory)
FactoryFinder.getFactory(FactoryFinder.EXCEPTION_HANDLER_FACTORY);
2.0
- Method from javax.faces.context.ExceptionHandlerFactory Summary: |
---|
getExceptionHandler, getWrapped |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.faces.context.ExceptionHandlerFactory Detail: |
---|
Create and return a A new
|
If this factory has been decorated, the
implementation doing the decorating may override this method to provide
access to the implementation being wrapped. A default implementation
is provided that returns |