JSP Error PAGE

An error occured. If you feel this to be a real problem, you can contact the author of the page that caused the error. <%@ page isErrorPage="true" %> <% if (exception == null) { out.println("

Sorry no exception

"); } else { %>

The name of the exception was: <%= exception.toString() %>

The message of the exception was: <%= exception.getMessage() %>

The stack trace was:

    <% 
	 // damn ugly Java, CLOS was an OO language not this faschist crap.
	 java.io.PrintWriter outstream = new java.io.PrintWriter(out);
         exception.printStackTrace(outstream);
    }
%>
    

Daniel K. Schneider
Last modified: Thu Jan 27 18:33:53 MET 2000