<%@ page language="java" import="java.io.*" %> <%@ page isErrorPage="true" %> JSP Application Error

JSP Application Error

An error in the previous JSP page has occurred. Please relay the information listed below to our technical staff.

Technical staff contact info:
Phone#: 777-777-7777
Email: techstaff@WeRTechie.com

Error in page: <%= request.getAttribute("faultPage") %>

Error processed by: <%= request.getRequestURI() %>

Error message: <%= exception.getMessage() %>

<% // get the detail from the implicit exception object StringWriter sw = new StringWriter(); PrintWriter pw = new PrintWriter(sw); PrintWriter jw = new PrintWriter(sw); exception.printStackTrace(pw); String errorDetail = sw.toString(); %> The gory detail:

<%= errorDetail%>