FExceptionAggregate constructor
FExceptionAggregate(
- Iterable<
FException> innerExceptions, [ - String? message
Implementation
factory FExceptionAggregate(final Iterable<FException> innerExceptions,
[String? message]) {
const defaultMessage = "One or more errors occurred.";
return FExceptionAggregate._internal(
message ?? defaultMessage,
innerExceptions,
);
}