public boolean processWebExceptionCatcher(Throwable t, WebHandlerContext webHandlerContext, RequestContext rc) {
WebExceptionContext webExceptionContext = new WebExceptionContext(webHandlerContext);
WebExceptionCatcherRef webExceptionCatcherRef = webObjectRegistry.getWebExceptionCatcherRef(t.getClass());
if (webExceptionCatcherRef != null) {
webExceptionCatcherRef.invoke(t, webExceptionContext, rc);
return true;
} else {
return false;
}
}