home *** CD-ROM | disk | FTP | other *** search
- <%@ page isErrorPage="true"
- import="com.websina.util.log.Log"
- %>
- <html>
- <head>
- <title>Error</title>
- </head>
- <%@ include file="_cache.jspf" %>
- <body>
- <p><font size=+1 color="red">
- <%
- String error = (String) request.getAttribute("error");
- if (error == null) {
- error = request.getQueryString();
- if (error != null) {
- error = java.net.URLDecoder.decode(error);
- }
- }
- if (error != null) {
- out.println(error);
- out.println("<br>");
- }
- if(exception != null) {
- out.println(exception.getMessage());
- Log.log(exception);
- }
- %>
- </font>
- </body>
- </html>
-