<%@ page isErrorPage="true" %> JSP Error Page

JSP Error Page

An exception was thrown: <%= exception %>

With the following stack trace:


<%
    ByteArrayOutputStream ostr = new ByteArrayOutputStream();
    exception.printStackTrace(new PrintStream(ostr));
    out.print(ostr);
%>