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

◆ AggregateException() [3/11]

System.AggregateException.AggregateException ( string? message,
Exception innerException )
inline

Definition at line 60 of file AggregateException.cs.

61 : base(message, innerException)
62 {
63 if (innerException == null)
64 {
65 throw new ArgumentNullException("innerException");
66 }
68 }
readonly Exception[] _innerExceptions

References System.AggregateException._innerExceptions.