* @see javax.faces.context.ExceptionHandlerWrapper#handle()
*/
public void handle() throws FacesException {
for (Iterator<ExceptionQueuedEvent> i = super.getUnhandledExceptionQueuedEvents().iterator(); i.hasNext();) {
ExceptionQueuedEvent event = i.next();
ExceptionQueuedEventContext context = (ExceptionQueuedEventContext) event.getSource();
Throwable t = context.getException();
Throwable cause = this.getRootCause(t);
if (cause instanceof StateValidationException) {
StateValidationException hdivExc = (StateValidationException) cause;
if (log.isDebugEnabled()) {