error page, message and http status
Hi,
within my web.xml I have declared an error page for http status 500.
Here is my declaration:
<error-page>
<error-code>500</error-code>
<location>/jsp/error.jsp</location>
</error-page>
Now, within the error.jsp, how can I get the exception that caused this response and print the exception message?
Thanks

