error.jsp
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. <%-- JSP container forwards request to this jsp, if any exceptions in processing --%>
  2. <html>
  3.    <head><title> URS's Error page </title></head>
  4.    <body>
  5. <%@ page isErrorPage="true" %>
  6. <% if (exception != null) { %>
  7. <p> The following exception was thrown: 
  8. <p> <%= exception %>
  9. <p> The stack trace is as follows:
  10. <%
  11.     ByteArrayOutputStream str = new ByteArrayOutputStream();
  12.     exception.printStackTrace(new PrintStream(str));
  13.     out.print(str);
  14.    }
  15. %>
  16. <p>Please click here to return to <a href="/ursday21ex/">main page</a>
  17.    </body>
  18. </html>