 | AggregateException Constructor (String, Exception) |
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,
params Exception[] innerExceptions
)
Public Sub New (
message As String,
ParamArray innerExceptions As Exception()
)
public:
AggregateException(
String^ message,
... array<Exception^>^ innerExceptions
)
new :
message : string *
innerExceptions : Exception[] -> AggregateException
Parameters
- message
- Type: SystemString
Error message that explains the reason for the exception. - innerExceptions
- Type: SystemException
Inner exceptions to wrap.
See Also