 | AggregateException Constructor (String, Exception) |
Constructs a new aggregate exception to wrap the passed inner exception with the specified detail message.
Namespace: Slash.SystemExt.ExceptionsAssembly: Slash.System (in Slash.System.dll) Version: 1.0.5843.24176
Syntaxpublic AggregateException(
string message,
Exception innerException
)
Public Sub New (
message As String,
innerException As Exception
)
public:
AggregateException(
String^ message,
Exception^ innerException
)
new :
message : string *
innerException : Exception -> AggregateException
Parameters
- message
- Type: SystemString
Error message that explains the reason for the exception. - innerException
- Type: SystemException
Exception to wrap.
See Also