java.io.Serializable
public class ErrorCollectionException
extends java.lang.Exception
ErrorCollectionException
exception is thrown when multiple errors
(that are related in some way) occur. This exception typically contains some number
of more specific, individual exceptions that provide more information about the underlying errors.
For example, the ErrorCollectionException
exception may be thrown when an attempt is
made to validate an invalid security realm, or when performing security data migration tasks.
In each case, the exceptions within the ErrorCollectionException
exception provide the
details about what went wrong.
Modifier and Type | Field | Description |
---|---|---|
static long |
serialVersionUID |
Modifier and Type | Method | Description |
---|---|---|
void |
add(java.lang.Throwable exception) |
Adds an exception to this collection of exceptions.
|
java.lang.String |
getBaseMessage() |
Gets the base message for this exception.
|
java.util.Collection |
getExceptions() |
Gets the exceptions that are embedded in this collection of exceptions.
|
java.lang.String |
getMessage() |
Gets detail messages for all exceptions that have been added to this collection of exceptions.
|
boolean |
isEmpty() |
Tests if any exceptions have been added to this collection of exceptions.
|
public static final long serialVersionUID
public java.util.Collection getExceptions()
Collection
embedded in this
collection of exceptions.public boolean isEmpty()
public java.lang.String getBaseMessage()
public java.lang.String getMessage()
getMessage
in class java.lang.Throwable
public void add(java.lang.Throwable exception)
exception
- the exception to be added to this collection of exceptions.