Share via


ExceptionSet Constructors

Definition

Initializes a new instance of the ExceptionSet class.

Overloads

ExceptionSet()

Initializes a new instance of the ExceptionSet class with the default property values.

ExceptionSet(IEnumerable<Exception>)

Initializes a new instance of the ExceptionSet class with the specified exceptions.

ExceptionSet()

Initializes a new instance of the ExceptionSet class with the default property values.

public:
 ExceptionSet();
public ExceptionSet ();
Public Sub New ()

Applies to

ExceptionSet(IEnumerable<Exception>)

Initializes a new instance of the ExceptionSet class with the specified exceptions.

public:
 ExceptionSet(System::Collections::Generic::IEnumerable<Exception ^> ^ exceptions);
public ExceptionSet (System.Collections.Generic.IEnumerable<Exception> exceptions);
new Microsoft.SqlServer.Management.Data.ExceptionSet : seq<Exception> -> Microsoft.SqlServer.Management.Data.ExceptionSet
Public Sub New (exceptions As IEnumerable(Of Exception))

Parameters

exceptions
IEnumerable<Exception>

Errors that occurred during application execution.

Applies to