husted 2002/06/24 10:11:05
Modified: src/share/org/apache/struts/action ExceptionHandler.java
Log:
JavaDoc tweaks.
Revision Changes Path
1.5 +7 -4
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.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ExceptionHandler.java 23 Jun 2002 01:17:04 -0000 1.4
+++ ExceptionHandler.java 24 Jun 2002 17:11:05 -0000 1.5
@@ -77,13 +77,15 @@
* the called <code>ExceptionHandler</code>.
*
* @param ex The exception to handle
- * @param ae The ActionException corresponding to the exception
+ * @param ae The ExceptionConfig corresponding to the exception
* @param mapping The ActionMapping we are processing
* @param formInstance The ActionForm we are processing
* @param request The servlet request we are processing
* @param response The servlet response we are creating
*
* @exception ServletException if a servlet exception occurs
+ *
+ * @since Struts 1.1
*/
public ActionForward execute(Exception ex,
ExceptionConfig ae,
@@ -93,7 +95,7 @@
HttpServletResponse response)
throws ServletException {
- ActionForward forward = null;
+ ActionForward forward = null;
ActionError error = null;
String property = null;
@@ -133,9 +135,10 @@
* <b>ActionErrors</b> instance is created, the error is added to the
collection
* and the collection is set under the Action.ERROR_KEY.
*
- * @param request
+ * @param request - The request we are handling
+ * @param property - The property name to use for this error
* @param error - The error generated from the exception mapping
- * @param input - The forward generated from the input path (from the form or
exception mapping)
+ * @param forward - The forward generated from the input path (from the form or
exception mapping)
* @param scope - The scope of the exception mapping.
*
*/
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>