br.com.jhonsapp.util.jsf.exception.handler.JsfExceptionHandlerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of util-jsf Show documentation
Show all versions of util-jsf Show documentation
This project provides useful classes that facilitate the construction of new components web.
The newest version!
package br.com.jhonsapp.util.jsf.exception.handler;
import javax.faces.context.ExceptionHandler;
import javax.faces.context.ExceptionHandlerFactory;
/**
* Class responsible for build the {@link JsfExceptionHandler}.
*
* @see JsfExceptionHandler
*
* @author Jhonathan Camacho
*
*/
public class JsfExceptionHandlerFactory extends ExceptionHandlerFactory {
private ExceptionHandlerFactory parent;
public JsfExceptionHandlerFactory(ExceptionHandlerFactory parent) {
this.parent = parent;
}
@Override
public ExceptionHandler getExceptionHandler() {
return new JsfExceptionHandler(parent.getExceptionHandler());
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy