Tomcat uses getThrowable for its nested exception method, so adding this to ExceptionUtils' list.

Bugz: #29673
Submitted by: Lars Beuster


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137864 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2004-07-04 03:24:57 +00:00
parent 8e45d583ee
commit 18baf613e5
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,7 @@ import org.apache.commons.lang.SystemUtils;
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a> * @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @author Pete Gieser * @author Pete Gieser
* @since 1.0 * @since 1.0
* @version $Id: ExceptionUtils.java,v 1.38 2004/06/01 21:15:27 scolebourne Exp $ * @version $Id: ExceptionUtils.java,v 1.39 2004/07/04 03:24:57 bayard Exp $
*/ */
public class ExceptionUtils { public class ExceptionUtils {
@ -69,6 +69,7 @@ public class ExceptionUtils {
"getLinkedException", "getLinkedException",
"getNestedException", "getNestedException",
"getLinkedCause", "getLinkedCause",
"getThrowable",
}; };
/** /**