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-io.git
The following commit(s) were added to refs/heads/master by this push:
new b79b6ea Javadoc.
b79b6ea is described below
commit b79b6eab801a0a50588ca7af999e22a9671e6a34
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Aug 9 11:30:22 2019 -0400
Javadoc.
---
src/main/java/org/apache/commons/io/IOExceptionList.java | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/io/IOExceptionList.java
b/src/main/java/org/apache/commons/io/IOExceptionList.java
index f013f68..f6aeec4 100644
--- a/src/main/java/org/apache/commons/io/IOExceptionList.java
+++ b/src/main/java/org/apache/commons/io/IOExceptionList.java
@@ -49,6 +49,7 @@ public class IOExceptionList extends IOException {
/**
* Gets the cause list.
*
+ * @param <T> type of exception to return.
* @return The list of causes.
*/
public <T extends Throwable> List<T> getCauseList() {
@@ -58,6 +59,7 @@ public class IOExceptionList extends IOException {
/**
* Gets the cause list.
*
+ * @param <T> type of exception to return.
* @param index index in the cause list.
* @return The list of causes.
*/
@@ -68,7 +70,9 @@ public class IOExceptionList extends IOException {
/**
* Gets the cause list.
*
+ * @param <T> type of exception to return.
* @param index index in the cause list.
+ * @param clazz type of exception to return.
* @return The list of causes.
*/
public <T extends Throwable> T getCause(final int index, Class<T> clazz) {
@@ -78,7 +82,7 @@ public class IOExceptionList extends IOException {
/**
* Works around Throwable and Generics, may fail at runtime depending on
the argument value.
*
- * @param <T> the target type
+ * @param <T> type of exception to return.
* @param clazz the target type
* @return The list of causes.
*/