I already have two web pages designed for 404 and 500 error pages in web.xml
<error-page>
<error-code>404</error-code>
<location>/WEB-INF/error/404.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/WEB-INF/error/500.jsp</location>
</error-page>
I want to redirect to a predesignated page for all the other errors.
Please help.
Thank you