I am using the error-page elements in the web.xml file. It looks like this.
<error-page>
<exception-type>javax.servlet.ServletException</exception-type>
<location>/errorpage.jsp</location>
</error-page>
When a ServletException is thrown in my Action class it is being forwarded to the
errorpage.jsp correctly. However, the page is not finding an exception that should be
specified in the request attribute. I have used this page successfully in the past
when specifying the error page at the jsp level.
Has anyone seen this behavior in the past?
thanks
Jeremy