home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 July
/
CMCD0703.ISO
/
Software
/
Freeware
/
Programare
/
bugzero
/
jsp
/
error.jsp
< prev
next >
Wrap
Text File
|
2003-06-05
|
617b
|
31 lines
<%@ 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>