super(wrapped);
}
protected boolean handleException(final Throwable cause, FacesContext facesContext) {
boolean handled = false;
Redirect annotation = cause.getClass().getAnnotation(Redirect.class);
if (annotation != null) {
handled = true;
Redirector.redirect(annotation.viewId());
}
return handled;
}