error.jsp 366 B

123456789101112131415
  1. <%@ page contentType="text/html; charset=UTF-8"%>
  2. <html>
  3. <head>
  4. <title>Exception!</title>
  5. </head>
  6. <body>
  7. <% Exception e = (Exception)request.getAttribute("ex"); %>
  8. <H2>错误异常: <%= e.getClass().getSimpleName()%></H2>
  9. <hr />
  10. <P>错误描述:</P>
  11. <%= e.getMessage()%>
  12. <P>错误信息:</P>
  13. <% e.printStackTrace(new java.io.PrintWriter(out)); %>
  14. </body>
  15. </html>