craigmcc 2002/06/22 18:17:04
Modified: src/share/org/apache/struts/action ExceptionHandler.java
Log:
Make ExceptionHandler.execute() public instead of protected, analogous
to Action.execute(), so overridden RequestHandler.processException() methods
can still call it.
PR: Bugzilla #7805
Submitted by: Chuck Cavaness <chuckcavaness at attbi.com>
Revision Changes Path
1.4 +6 -6
jakarta-struts/src/share/org/apache/struts/action/ExceptionHandler.java
Index: ExceptionHandler.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/ExceptionHandler.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ExceptionHandler.java 16 Jun 2002 04:50:01 -0000 1.3
+++ ExceptionHandler.java 23 Jun 2002 01:17:04 -0000 1.4
@@ -85,12 +85,12 @@
*
* @exception ServletException if a servlet exception occurs
*/
- protected ActionForward execute(Exception ex,
- ExceptionConfig ae,
- ActionMapping mapping,
- ActionForm formInstance,
- HttpServletRequest request,
- HttpServletResponse response)
+ public ActionForward execute(Exception ex,
+ ExceptionConfig ae,
+ ActionMapping mapping,
+ ActionForm formInstance,
+ HttpServletRequest request,
+ HttpServletResponse response)
throws ServletException {
ActionForward forward = null;
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>