Accord.AggregateException.AggregateException C# (CSharp) Méthode

AggregateException() public méthode

Initializes a new instance of the AggregateException class.
public AggregateException ( string message ) : System
message string Message providing some additional information.
Résultat System
        public AggregateException(string message) :
            base(message)
        {
            exceptions = new List<Exception>();
        }

Same methods

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