[This is preliminary documentation and is subject to change.]

CTor

Namespace: Tools.ComponentModelT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public MultipleException(
	IEnumerable<Exception> Exceptions,
	string Message,
	Exception InnerException
)
Visual Basic
Public Sub New ( _
	Exceptions As IEnumerable(Of Exception), _
	Message As String, _
	InnerException As Exception _
)
Visual C++
public:
MultipleException(
	IEnumerable<Exception^>^ Exceptions, 
	String^ Message, 
	Exception^ InnerException
)
F#
new : 
        Exceptions:IEnumerable<Exception> * 
        Message:string * 
        InnerException:Exception -> MultipleException
JScript
public function MultipleException(
	Exceptions : IEnumerable<Exception>, 
	Message : String, 
	InnerException : Exception
)

Parameters

Exceptions
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Exception>)>)>
Exceptions that have occured
Message
Type: System..::..String
The message that describes the error.
InnerException
Type: System..::..Exception
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionExceptions is null
System..::..ArgumentExceptionExceptions is empty or contains only one item.

See Also