Hallo,
Das ist ein Teil meiner web.xml:
<error-page>
<exception-type>java.lang.NumberFormatException</exception-type>
<location>/errorNumber.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/error.jsp</location>
</error-page>
Wenn ich in einer JSP jetzt eine NumberFormatException auslöse wird aber nicht errorNumber.jsp aufgerufen sondern error.jsp. Weiss jemand warum?
Jo