Return-Path: Mailing-List: contact ant-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list ant-dev@jakarta.apache.org Received: (qmail 80500 invoked by uid 500); 9 Feb 2000 02:05:49 -0000 Delivered-To: apmail-jakarta-ant-cvs@jakarta.apache.org Received: (qmail 80497 invoked from network); 9 Feb 2000 02:05:49 -0000 Received: from taz.hyperreal.org (HELO hyperreal.org) (209.133.83.16) by locus.apache.org with SMTP; 9 Feb 2000 02:05:49 -0000 Received: (qmail 4602 invoked by uid 2016); 9 Feb 2000 02:01:40 -0000 Delivered-To: apcore-jakarta-ant-cvs@apache.org Received: (qmail 4526 invoked from network); 9 Feb 2000 02:01:37 -0000 Received: from locus.apache.org (63.211.145.10) by taz.hyperreal.org with SMTP; 9 Feb 2000 02:01:37 -0000 Received: (qmail 79590 invoked by uid 1064); 9 Feb 2000 02:01:34 -0000 Date: 9 Feb 2000 02:01:34 -0000 Message-ID: <20000209020134.79589.qmail@locus.apache.org> From: rubys@locus.apache.org To: jakarta-ant-cvs@apache.org Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant BuildException.java rubys 00/02/08 18:01:33 Modified: src/main/org/apache/tools/ant BuildException.java Log: Javadoc improvements Submitted by: Daniel Rall Revision Changes Path 1.2 +9 -5 jakarta-ant/src/main/org/apache/tools/ant/BuildException.java Index: BuildException.java =================================================================== RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/BuildException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- BuildException.java 2000/01/13 10:41:40 1.1 +++ BuildException.java 2000/02/09 02:01:33 1.2 @@ -55,18 +55,18 @@ package org.apache.tools.ant; /** - * Signals an error condition. + * Signals an error condition during a build. * * @author James Duncan Davidson */ public class BuildException extends RuntimeException { - /** Exception that might have caused this one */ + /** Exception that might have caused this one. */ private Exception cause; /** - * Constructs an exception with no information. + * Constructs a build exception with no descriptive information. */ public BuildException() { @@ -74,7 +74,8 @@ } /** - * Constructs an exception with the given message. + * Constructs an exception with the given descriptive message. + * @param msg Description of or information about the exception. */ public BuildException(String msg) { @@ -84,6 +85,8 @@ /** * Constructs an exception with the given message and exception as * a root cause. + * @param msg Description of or information about the exception. + * @param cause Exception that might have cause this one. */ public BuildException(String msg, Exception cause) { @@ -93,10 +96,11 @@ /** * Constructs an exception with the given exception as a root cause. + * @param cause Exception that might have caused this one. */ public BuildException(Exception cause) { super(); this.cause = cause; } -} \ No newline at end of file +}