[LANG-1361] ExceptionUtils.getThrowableList() is using deprecated

ExceptionUtils.getCause()
This commit is contained in:
Gary Gregory 2017-10-23 12:12:54 -06:00
parent 7aad594820
commit 0e20d15820
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ public static Throwable getCause(final Throwable throwable, String[] methodNames
* <p>Introspects the <code>Throwable</code> to obtain the root cause.</p>
*
* <p>This method walks through the exception chain to the last element,
* "root" of the tree, using {@link #getCause(Throwable)}, and
* "root" of the tree, using {@link Throwable#getCause()}, and
* returns that exception.</p>
*
* <p>From version 2.2, this method handles recursive cause structures