【JSP开源代码栏目提醒】:网学会员JSP开源代码为您提供myException.jsp参考,解决您在myException.jsp学习中工作中的难题,参考学习。
<%@ page contentType="text/html;charset=GB2312" isErrorPage="true" %>
<html>
<head>
<title>myException.jsp</title>
</head>
<body>
<h2> exception 对象</h2>
Exception:<%= exception %><br>
Message:<%= exception.getMessage() %><br>
Localized Message:<%= exception.getLocalizedMessage() %><br>
Stack Trace:<% exception.printStackTrace(new java.io.PrintWriter(out));%><br>
</body>
</html>