32 lines
846 B
Plaintext
32 lines
846 B
Plaintext
<%@ page isErrorPage="true" %>
|
|
<html>
|
|
<head>
|
|
<title>Adempiere Error</title>
|
|
<link href="standard.css" rel="stylesheet" type="text/css"/>
|
|
</head>
|
|
<body><div id="page">
|
|
<h1>Adempiere System Error</h1>
|
|
<p>Sorry, an error occured. If the error persists, please inform us.</p>
|
|
<p>Error Message:</p>
|
|
<pre><font color="red">
|
|
<%= exception.getMessage() %>
|
|
</font></pre>
|
|
<h2>Stack Trace:</h2>
|
|
<%
|
|
java.lang.Throwable ex = exception;
|
|
while (ex != null)
|
|
{
|
|
out.println("<h3>" + ex.toString() + "</h3>");
|
|
java.io.CharArrayWriter cw = new java.io.CharArrayWriter();
|
|
java.io.PrintWriter pw = new java.io.PrintWriter(cw,true);
|
|
ex.printStackTrace (pw);
|
|
out.println("<pre><font color=\"red\">");
|
|
out.println(cw.toString());
|
|
out.println("</font></pre>");
|
|
ex = exception.getCause();
|
|
}
|
|
%>
|
|
<br>
|
|
</div></body>
|
|
</html>
|