there is working code: (previous doesn't)
 
 
<%
    if (exception == null) {
 out.println("<p>Sorry no exception<p>");
    }
    else {
 
%>
    The name of the exception was:<%=exception.toString() %><BR>
    The message of the exception was:<%= exception.getMessage() %><BR>
    Stack trace:<br>
    <pre>
    <%
         exception.printStackTrace(new java.io.PrintWriter(out));
    }
%>
    </pre>
 
------------------------------------------------------------------
Porfiriev Sergey- mailto:[EMAIL PROTECTED]
Axwell  http://www.axwell.com
------------------------------------------------------------------

Reply via email to