public class AggregateException
extends java.lang.Exception
Throwables that may be thrown in the process of a task's execution.| Constructor and Description |
|---|
AggregateException(java.lang.String detailMessage,
java.util.List<? extends java.lang.Throwable> innerThrowables)
Constructs a new
AggregateException with the current stack trace, the specified detail
message and with references to the inner throwables that are the cause of this exception. |
| Modifier and Type | Method and Description |
|---|---|
void |
printStackTrace(java.io.PrintStream err) |
void |
printStackTrace(java.io.PrintWriter err) |
public AggregateException(java.lang.String detailMessage,
java.util.List<? extends java.lang.Throwable> innerThrowables)
AggregateException with the current stack trace, the specified detail
message and with references to the inner throwables that are the cause of this exception.detailMessage - The detail message for this exception.innerThrowables - The exceptions that are the cause of the current exception.