<%@ page language="java" isErrorPage="true" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <fmt:message key="errorPage.title"/>

<% if (exception != null) { %>
<% exception.printStackTrace(new java.io.PrintWriter(out)); %>
<% } else if ((Exception)request.getAttribute("javax.servlet.error.exception") != null) { %>
<% ((Exception)request.getAttribute("javax.servlet.error.exception"))
                           .printStackTrace(new java.io.PrintWriter(out)); %>
<% } %>