You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/08/08 04:31:55 UTC

[commons-dbcp] branch master updated: Javadoc.

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 <ga...@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;
     }