From ca7f616594682c6d0ff74c146f4e81314c340a3d Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Mon, 11 Apr 2011 14:18:26 +0000 Subject: [PATCH] remove javadocs detailing things the #getCause() methods no longer do git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1091084 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/commons/lang3/exception/ExceptionUtils.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java index f4c451ca8..1f55ad3da 100644 --- a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java +++ b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java @@ -111,9 +111,6 @@ public static String[] getDefaultCauseMethodNames() { *
  • getNested()
  • * * - *

    In the absence of any such method, the object is inspected for a - * detail field assignable to a Throwable.

    - * *

    If none of the above is found, returns null.

    * * @param throwable the throwable to introspect for a cause, may be null @@ -130,12 +127,6 @@ public static Throwable getCause(Throwable throwable) { /** *

    Introspects the Throwable to obtain the cause.

    * - *
      - *
    1. Try known exception types.
    2. - *
    3. Try the supplied array of method names.
    4. - *
    5. Try the field 'detail'.
    6. - *
    - * *

    A null set of method names means use the default set. * A null in the set of method names will be ignored.

    *