blob: 8fdcfe17359fce71352cb9032ac90fe33d0ab6a6 [file] [log] [blame]
<!DOCTYPE html>
<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<html>
<head>
<meta charset="UTF-8">
<title>Exception Handling - Error</title>
</head>
<body>
<h4>The application has malfunctioned.</h4>
<p> Please contact technical support with the following information:</p>
<!-- the exception and exceptionStack bean properties
were created by Struts2's Exception Interceptor (see page 89) -->
<h4>Exception Name: <s:property value="exception"/></h4>
<h4>Exception Details: <s:property value="exceptionStack"/></h4>
<p><a href="index.jsp">Return to the home page.</a></p>
</body>
</html>