I have a problem with catching error page
When I throw an Throwable exception everything works fine (my error-page, defined in the DD catches it)
but if do response.sendError(404) in my
servlet code my error-page doesn't catches it..
here's the source:
DD:
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/jsp/ch11/Error.jsp</location>
</error-page>
<error-page>
<exception-type>404</exception-type>
<location>/jsp/ch11/Error.jsp</location>
</error-page>
Servlet's doGet method (that invokes the error)
//throw new IOException("asd "); //works OK, Error.jsp catches it
response.sendError(404); // see HTTP Status 404, not my Error.jsp
Thank you for your time