protected void showBurp() throws IOException, SQLException {
final Request req = getRequest();
final Response res = getResponse();
final TBurp tpl = new TBurp();
tpl.setHost( req.getHeader("Host") );
tpl.setReferer( req.getHeader("Referer") );
tpl.setException( e );
tpl.setMessage( e.getMessage() );
tpl.setShowStackTrace( showStackTrace );
tpl.setStatusCode( e.getStatusCode() );
res.setStatus( e.getStatusCode() );
res.showHtml( tpl );
}