Detailed Description
Aggregation of multiple exceptions.
All exceptions which caused an instance of this are added to the suppressedExceptions list and can be retrieved via the getSuppressed() method.
Inheritance diagram for fiftyone.pipeline.exceptions.AggregateException:
Collaboration diagram for fiftyone.pipeline.exceptions.AggregateException:
Public Member Functions | |
| AggregateException (String message, Collection< Throwable > causes) | |
| Construct a new instance. | |
| AggregateException (Collection< Throwable > causes) | |
| Construct a new instance with no message. | |
Constructor & Destructor Documentation
◆ AggregateException() [1/2]
| fiftyone.pipeline.exceptions.AggregateException.AggregateException | ( | String | message, |
| Collection< Throwable > | causes ) |
Construct a new instance.
- Parameters
-
message the message to give to the exception causes multiple causes to be contained in the exception
◆ AggregateException() [2/2]
| fiftyone.pipeline.exceptions.AggregateException.AggregateException | ( | Collection< Throwable > | causes | ) |
Construct a new instance with no message.
- Parameters
-
causes multiple causes to be contained in the exception
