]> git.mxchange.org Git - pizzaservice-war.git/blob - web/errorHandler.jsp
813977e0fa19bd9cf837b43ce064aaddce2bb18d
[pizzaservice-war.git] / web / errorHandler.jsp
1 <%-- 
2         Document   : errorHandler
3         Created on : 05.08.2015, 12:06:39
4         Author     : Roland Haeder
5 --%>
6
7 <%@page import="org.mxchange.pizzaapplication.application.PizzaApplication"%>
8 <%@page import="org.mxchange.pizzaapplication.application.PizzaServiceApplication"%>
9 <%@page import="java.io.PrintWriter"%>
10 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
11 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
12 <jsp:useBean id="date" class="java.util.Date" /><%
13         // Init application instance
14         PizzaApplication app = PizzaServiceApplication.getInstance(application);
15 %>
16 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
17 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
18         <head>
19                 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
20                 <link rel="stylesheet" href="style.css" type="text/css"/>
21                 <title><%=PizzaServiceApplication.MAIN_TITLE%> - Fehler</title>
22         </head>
23
24         <body>
25                 <div id="title">
26                         <h1><%=PizzaServiceApplication.MAIN_TITLE%> - Fehler</h1>
27                 </div>
28
29                 <div id="menu">
30                         <jsp:include page="static/menu.jsp" flush="true" />
31                 </div>
32
33                 <div id="content_outer">
34                         <div id="content_title">
35                                 <h2>An error occured:</h2>
36                         </div>
37
38                         <div id="content">
39                                 Unfortunately an unexpected error has occurred. Below you can find the error details.
40                                 <ul>
41                                         <li>Timestamp: <fmt:formatDate value="${date}" type="both" dateStyle="long" timeStyle="long" /></li>
42                                         <li>Action: <c:out value="${requestScope['javax.servlet.forward.request_uri']}" /></li>
43                                         <li>Exception: <c:out value="${requestScope['javax.servlet.error.exception']}" /></li>
44                                         <li>Message: <c:out value="${requestScope['javax.servlet.error.message']}" /></li>
45                                         <li>Status code: <c:out value="${requestScope['javax.servlet.error.status_code']}" /></li>
46                                         <li>User agent: <c:out value="${header['user-agent']}" /></li>
47                                 </ul>
48                         </div>
49                 </div>
50         </body>
51 </html>