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