error-nodetail.jsp 252 B

12345678910111213
  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>业务异常</H2>
  9. <hr />
  10. <P>异常描述:</P>
  11. <%= e.getMessage()%>
  12. </body>
  13. </html>