if(t instanceof PageServletException) {
PageServletException pse=(PageServletException)t;
t=pse.getPageException();
}
if(bodyContent!=null) {
Excepton util = CFMLEngineFactory.getInstance().getExceptionUtil();
if(util.isOfType(Excepton.TYPE_ABORT,t)) {
bodyContent.writeOut(bodyContent.getEnclosingWriter());
}
bodyContent.clearBuffer();
}
throw t;