Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am porting an app from Oracle Application Server to Tomcat 6, and some of my custom error pages that used to work under OAS are now directed to either the 404 or 500 error pages. Here are the definitions from web.xml:

<error-page>
     <exception-type>java.lang.IllegalArgumentException</exception-type>
      <location>/JSP/InvalidParameter.jsp</location>
   </error-page>
   <error-page>
     <exception-type>java.lang.NumberFormatException</exception-type>
      <location>/JSP/InvalidParameter.jsp</location>
   </error-page>
   <error-page>
     <error-code>404</error-code>
    <location>/JSP/404Error.jsp</location>
  </error-page>
  <error-page>
     <error-code>401</error-code>
    <location>/JSP/401Error.jsp</location>
  </error-page>
  <error-page>
     <error-code>500</error-code>
    <location>/JSP/500Error.jsp</location>
  </error-page>
  <error-page>
      <exception-type>java.sql.SQLException</exception-type>
    <location>/JSP/500Error.jsp</location>
  </error-page>
  <error-page>
      <exception-type>java.lang.Exception</exception-type>
    <location>/JSP/500Error.jsp</location>
  </error-page>

For debugging, I display the exception and stack trace on my 500Error.jsp page with <%=exception.toString()%>, and I am getting errors like java.lang.IllegalArgumentException: IS_NUM, which should be directed to their own pages. I am throwing the error from an input validation parser.

Any idea why this wouldn't show up on the intended page, InvalidParameter.jsp? With Tomcat, does the java.lang.Exception line override the more specific java.lang.IllegalArgumentException?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.