diff --git a/src/java/org/apache/commons/lang/exception/ExceptionUtils.java b/src/java/org/apache/commons/lang/exception/ExceptionUtils.java
index 72ac075d6..c9a560deb 100644
--- a/src/java/org/apache/commons/lang/exception/ExceptionUtils.java
+++ b/src/java/org/apache/commons/lang/exception/ExceptionUtils.java
@@ -85,13 +85,14 @@ public class ExceptionUtils
/**
* Introspects the specified Throwable
for a
- * getCause()
method (standard as of JDK 1.4, and
- * part of the {@link
+ * getCause()
method which returns a
+ * Throwable
object (standard as of JDK 1.4, and part
+ * of the {@link
* org.apache.commons.lang.exception.NestableException} API),
* extracting and returning the cause of the exception.
* Otherwise, returns null
.
- *
- * TODO: Examine for a "detail" public member attribute from + * + *
TODO: Examine for a "detail" public member attribute from * java.rmi.RemoteException. * * @param t The exception to introspect for a cause.