Accord.AggregateException.AggregateException C# (CSharp) Method

AggregateException() public method

Initializes a new instance of the AggregateException class.
public AggregateException ( string message, IEnumerable innerExceptions ) : System
message string Message providing some additional information.
innerExceptions IEnumerable The exceptions that are the cause of the current exception.
return System
        public AggregateException(string message, IEnumerable<Exception> innerExceptions) :
            base(message, innerExceptions.GetEnumerator().Current)
        {
            exceptions = new List<Exception>(innerExceptions);
        }

Same methods

AggregateException::AggregateException ( ) : System
AggregateException::AggregateException ( SerializationInfo info, StreamingContext context ) : System
AggregateException::AggregateException ( string message ) : System
AggregateException::AggregateException ( string message, Exception innerException ) : System
AggregateException