 | AggregateException Constructor (String, IEnumerableException) |
Constructs a new aggreate exception wrapping the passed inner exceptions with the specified detail message.
Namespace: Slash.SystemExt.ExceptionsAssembly: Slash.System (in Slash.System.dll) Version: 1.0.5843.24176
Syntaxpublic AggregateException(
string message,
IEnumerable<Exception> innerExceptions
)
Public Sub New (
message As String,
innerExceptions As IEnumerable(Of Exception)
)
public:
AggregateException(
String^ message,
IEnumerable<Exception^>^ innerExceptions
)
new :
message : string *
innerExceptions : IEnumerable<Exception> -> AggregateException
Parameters
- message
- Type: SystemString
Error message that explains the reason for the exception. - innerExceptions
- Type: System.Collections.GenericIEnumerableException
Inner exceptions to wrap.
See Also