error.jsp

<%@ page contentType="text/html; charset=euc-jp" %>
<%@ page isErrorPage="true" %>

<html>
<body>
<a href="html/error_jsp.html">View Source</a> of JSP that printed the error message below<br/><br/>


<h2>Error Occurred:</h2>
<%
	out.println(exception.getMessage());
%>

<br/><br/>
<h2>Description:</h2><br/><br/>
<%
	out.println(exception.toString());
%>

</body>
</html>