Hello

I have searched this topic on google to find the following to be true:

catching 500 or 404 error does not work in Tomcat 5 like this

<error-page>
      <exception-type>500</exception-type>
      <location>/error.jsp</location>
  </error-page>
<error-page>
      <exception-type>404</exception-type>
      <location>/error.jsp</location>
  </error-page>

Is this true?

This works for 500 but not 404.

<error-page>
      <exception-type>java.lang.Throwable</exception-type>
      <location>/error.jsp</location>
  </error-page>

Is there a way to catch all exceptions that works in Tomcat 5

Thanks
-- 
Chris Cherrett
Tracking Solutions International
1-877-TSIWARE
www.tsiware.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to