error.jsp
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- <%-- JSP container forwards request to this jsp, if any exceptions in processing --%>
- <html>
- <head><title> URS's Error page </title></head>
- <body>
- <%@ page isErrorPage="true" %>
- <% if (exception != null) { %>
- <p> The following exception was thrown:
- <p> <%= exception %>
- <p> The stack trace is as follows:
- <%
- ByteArrayOutputStream str = new ByteArrayOutputStream();
- exception.printStackTrace(new PrintStream(str));
- out.print(str);
- }
- %>
- <p>Please click here to return to <a href="/ursday21ex/">main page</a>
- </body>
- </html>