source: EDIS/trunk/java/tracking-server-main/src/main/webapp/exception.jsp@ 1227

Last change on this file since 1227 was 1227, checked in by George Lilly, 13 years ago

initial load of EDIS 1.0

File size: 561 bytes
Line 
1<%@ page pageEncoding="UTF-8" contentType="application/xml;charset=UTF-8" language="java" session="false" isErrorPage="true" %><?xml version="1.0" encoding="UTF-8"?>
2<results>
3<error>
4 <code>500</code>
5 <message><%= ((Exception) request.getAttribute("exception")).getMessage() %></message>
6 <resource><%= request.getAttribute("resource") %></resource>
7 <detail xml:space="preserve"><% Exception e =
8 (Exception) request.getAttribute("exception");
9 e.printStackTrace(new java.io.PrintWriter(out));
10%></detail>
11</error>
12</results>
Note: See TracBrowser for help on using the repository browser.