Accord.AggregateException.AggregateException C# (CSharp) Method

AggregateException() public method

Initializes a new instance of the AggregateException class.
public AggregateException ( ) : System
return System
        public AggregateException()
        {
            exceptions = new List<Exception>();
        }

Same methods

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