AggregateException constructor
AggregateException(
- Iterable<
FreemeworkException> innerExceptions, [ - String? message
Implementation
factory AggregateException(Iterable<FreemeworkException> innerExceptions,
[String? message]) {
assert(innerExceptions.isNotEmpty);
return AggregateException._internal(
message ?? innerExceptions.first.message, innerExceptions);
}