AggregateException.from constructor

AggregateException.from(
  1. Iterable<Exception> exceptions
)

Creates an AggregateException from a collection of exceptions.

Implementation

factory AggregateException.from(Iterable<Exception> exceptions) =>
    AggregateException(innerExceptions: exceptions);