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?