System.AggregateException.AggregateException C# (CSharp) Метод

AggregateException() публичный Метод

public AggregateException ( string message, Exception innerException ) : System
message string
innerException Exception
Результат System
        public AggregateException(string message, Exception innerException)
            : base(message, innerException)
        {
            if (innerException == null)
                throw new ArgumentNullException ("innerException");
            innerExceptions.Add (innerException);
        }

Same methods

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