public AggregateException(ErrorList errors, ErrorSeverity severity) : this(errors, severity, null) { }
public AggregateException(ErrorList errors, ErrorSeverity severity, Exception innerException) : base(severity, DataphorException.ApplicationError, errors.ToString(), innerException) { _errors = errors; }
public AggregateException(ErrorList errors) : this(errors, ErrorSeverity.Application, null) { }