Class PreJsf2ExceptionHandlerFactory
- java.lang.Object
-
- javax.faces.context.ExceptionHandlerFactory
-
- javax.faces.webapp.PreJsf2ExceptionHandlerFactory
-
- All Implemented Interfaces:
FacesWrapper<ExceptionHandlerFactory>
public class PreJsf2ExceptionHandlerFactory extends ExceptionHandlerFactory
This
ExceptionHandlerFactoryinstance produces JSF 1.2 compatibleExceptionHandlerinstances. TheExceptionHandler.handle()method of theExceptionHandlerproduced by this factory must meet the following requirementsAny exceptions thrown before or after phase execution will be logged and swallowed.
The implementation must examine the
Exceptionwithin each of the unhandled exception events. If theExceptionis an instance ofUpdateModelException, extract theFacesMessagefrom theUpdateModelException. Log aSEVEREmessage to the log and queue theFacesMessageon theFacesContext, using theclientIdof the source component in a call toFacesContext.addMessage(java.lang.String, javax.faces.application.FacesMessage)
- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description PreJsf2ExceptionHandlerFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExceptionHandlergetExceptionHandler()Create and return a A newExceptionHandlerinstance.-
Methods inherited from class javax.faces.context.ExceptionHandlerFactory
getWrapped
-
-
-
-
Method Detail
-
getExceptionHandler
public ExceptionHandler getExceptionHandler()
Description copied from class:ExceptionHandlerFactoryCreate and return a A new
ExceptionHandlerinstance. The implementation must return anExceptionHandlerinstance suitable for the environment. For example, in some cases it may be desirable for anExceptionHandlerto write error information to the response instead of throwing exceptions as in the case of Ajax applications.- Specified by:
getExceptionHandlerin classExceptionHandlerFactory- Returns:
- a new
ExceptionHandlerthat behaves in a fashion compatible with specifications prior to JavaServerFaces 1.2
-
-