Class CompositeException

All Implemented Interfaces:
Serializable

public class CompositeException extends RuntimeException
An implementation of Exception collecting several causes. This class is used to collect multiple failures.

Uses getCauses() to retrieves the individual causes. Throwable.getCause() returns the first cause.

Causes, except the first one, are stored as suppressed exception.

See Also: