Error-page, display Exception message and stack trace on page
Hi,
I have setup an errorpage. I configured the web.xml
to navigate to that page if any exceptions occur.
<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/faces/MyErrorPage.jsp</location>
</error-page>
I would now like to display the Exception information on that page. (So the exception.getMessage() and the stacktrace .)
Any help would greatly be appreciated.

