Javadoc typos.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137890 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2004-08-04 18:41:09 +00:00
parent 8b6499b395
commit 5fe0ddd20d
1 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@
* times, and provided that all exceptions except the first one
* are descendants of <code>NestedException</code>, when the
* exception is finally printed out using any of the <code>
* printStackTrace()</code> methods, the stacktrace will contain
* printStackTrace()</code> methods, the stack trace will contain
* the information about all exceptions thrown and caught on
* the way.
* <p> Running the following program
@ -64,7 +64,7 @@
* 30 }
* 31 }
* </pre></blockquote>
* <p>Yields the following stacktrace:
* <p>Yields the following stack trace:
* <p><blockquote><pre>
* org.apache.commons.lang.exception.NestableException: foo
* at Test.a(Test.java:16)
@ -84,7 +84,7 @@
* @author <a href="mailto:knielsen@apache.org">Kasper Nielsen</a>
* @author <a href="mailto:steven@caswell.name">Steven Caswell</a>
* @since 1.0
* @version $Id: NestableException.java,v 1.11 2004/02/18 22:54:04 ggregory Exp $
* @version $Id: NestableException.java,v 1.12 2004/08/04 18:41:09 ggregory Exp $
*/
public class NestableException extends Exception implements Nestable {