Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ AggregateException() [8/11]

System.AggregateException.AggregateException ( string message,
Exception[] innerExceptions,
bool cloneExceptions )
inlineprivate

Definition at line 90 of file AggregateException.cs.

91 : base(message, (innerExceptions != null && innerExceptions.Length != 0) ? innerExceptions[0] : null)
92 {
93 if (innerExceptions == null)
94 {
95 throw new ArgumentNullException("innerExceptions");
96 }
98 for (int i = 0; i < _innerExceptions.Length; i++)
99 {
101 if (innerExceptions[i] == null)
102 {
103 throw new ArgumentException(SR.AggregateException_ctor_InnerExceptionNull);
104 }
105 }
106 }
readonly Exception[] _innerExceptions

References System.AggregateException._innerExceptions, System.SR.AggregateException_ctor_InnerExceptionNull, and System.Runtime.Serialization.Dictionary.