We use weblogic to deploy our application, the requirement is to handle all the server errors, in web.xml and have 500 through 510, 598 and 599. The specification of error codes - 510, 598 and 599 throws the following exception:
Exception:<BEA-101024> Unsupported error status code for error-page in web.xml.
And the code in web.xml is as follows
<error-page><error-code>510</error-code><location>/jsp/main/http_error.jsp</location></error-page>
Is there any other way to handle the 3 error codes(510, 598 and 599) or is it not required to be handled at all. Your suggestions on this is highly appreciated. Thanks.