MD-ERROR.jsp 597 Bytes
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
<%@ page
  session="true"
  contentType="text/html; charset=ISO-8859-1"
%>
<%@ page import="java.io.PrintWriter"%>

<html>
<head>
  <title>JPivot had an error ...</title>
</head>
<body bgcolor=white>

  <h2>JPivot had an error ...</h2><p/>
<%
        Throwable e = (Throwable) request.getAttribute("javax.servlet.jsp.jspException");
      while (e != null) {
%>      <h2><%= e.toString() %></h2><pre>
<%
        e.printStackTrace(new PrintWriter(out));
%>
        </pre>

<%
        Throwable prev = e;
        e = e.getCause();
        if (e == prev)
          break;
      }
%>

</body>
</html>