Esempio n. 1
0
 public AggregateException(ErrorList errors, ErrorSeverity severity) : this(errors, severity, null)
 {
 }
Esempio n. 2
0
 public AggregateException(ErrorList errors, ErrorSeverity severity, Exception innerException) : base(severity, NoIDException.ApplicationError, errors.ToString(), innerException)
 {
     _errors = errors;
 }
Esempio n. 3
0
 public AggregateException(ErrorList errors) : this(errors, ErrorSeverity.Application, null)
 {
 }