Trying to understand exceptions and error-page

2005-02-25 Thread Wendy Smoak
With nothing configured for errors, I get a Tomcat error page: HTTP Status 500 - type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. exception javax.servlet.ServletException: org.xml.sax.SAXParseException: blah,

RE: Trying to understand exceptions and error-page

2005-02-25 Thread Mike Curwen
[mailto:[EMAIL PROTECTED] Sent: Friday, February 25, 2005 11:27 AM To: Tomcat Users List Subject: Trying to understand exceptions and error-page With nothing configured for errors, I get a Tomcat error page: HTTP Status 500 - type Exception report message description The server

Re: Trying to understand exceptions and error-page

2005-02-25 Thread Wendy Smoak
From: Mike Curwen [EMAIL PROTECTED] I've successfully caught 'all other' exceptions (which I suppose must include ServletExceptions), by using one error-page declaration that catches status-code500/status-code, and then multiple exception-type's to catch more specific exception types. Thanks,