I got an error page defined in my web.xml as follows
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/Error.jsp</location>
</error-page>
I had removed a taglib definition from my web.xml file
and had a page that still was using the tag.
with out the error-page def I get the standard error 500 page
with the following exception
org.apache.jasper.JasperException: File "/tags/struts-logic" not found
at
org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.
java:105)
but with my error page I get a null for the exception.
other errors show up ok on my error page.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]