This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-dbcp.git
The following commit(s) were added to refs/heads/master by this push: new 459b4b8 Javadoc. 459b4b8 is described below commit 459b4b84b92cb20499b091a6dd70e795c66eb674 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu Aug 8 00:31:50 2019 -0400 Javadoc. --- src/main/java/org/apache/commons/dbcp2/SQLExceptionList.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/org/apache/commons/dbcp2/SQLExceptionList.java b/src/main/java/org/apache/commons/dbcp2/SQLExceptionList.java index 8a35dc6..b9022ae 100644 --- a/src/main/java/org/apache/commons/dbcp2/SQLExceptionList.java +++ b/src/main/java/org/apache/commons/dbcp2/SQLExceptionList.java @@ -44,6 +44,11 @@ public class SQLExceptionList extends SQLException { this.causeList = causeList; } + /** + * Gets the cause list. + * + * @return The list of causes. + */ public List<? extends Throwable> getCauseList() { return causeList; }