Accord.AggregateException.AggregateException C# (CSharp) Method

AggregateException() public method

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

Same methods

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