// Note that we allow multiple exception handlers
// to handle the same exception. So we iterate all
// of the exception handlers, at least until one
// those throws an exception.
while (exceptionHandlers.hasNext()) {
ExceptionHandler exceptionHandler = (ExceptionHandler) exceptionHandlers
.next();
if (exceptionHandler.handleException(_container,
initialThrowable)) {
exceptionHandled = true;
}
}
if (exceptionHandled) {