> How to redirect to a common error page on occurance an Exception,in
> struts?
declare global error page in the Struts-config.xml
<global-exceptions>
<exception key="error.general" type="java.lang.Exception"
path="/../error.jsp" />
</global-exceptions>
<global-forwards>
<forward name="error" path="/../error.jsp" />
</global-forwards>
and provide the mapping.findForward ("error"); in the Action class