IntegrationServicesException Constructors

Definition

Initializes a new instance of the IntegrationServicesException class using default values.

Overloads

IntegrationServicesException()

Initializes a new instance of the IntegrationServicesException class.

IntegrationServicesException(String)

Initializes a new instance of the IntegrationServicesException class with the specified exception message.

IntegrationServicesException(SerializationInfo, StreamingContext)

Initializes a new instance of the IntegrationServicesException class with the specified information and streaming context.

IntegrationServicesException(String, Exception)

Initializes a new instance of the IntegrationServicesException class with the specified exception message.

IntegrationServicesException()

Initializes a new instance of the IntegrationServicesException class.

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

Applies to

IntegrationServicesException(String)

Initializes a new instance of the IntegrationServicesException class with the specified exception message.

public:
 IntegrationServicesException(System::String ^ message);
public IntegrationServicesException (string message);
new Microsoft.SqlServer.Management.IntegrationServices.IntegrationServicesException : string -> Microsoft.SqlServer.Management.IntegrationServices.IntegrationServicesException
Public Sub New (message As String)

Parameters

message
String

The exception message.

Applies to

IntegrationServicesException(SerializationInfo, StreamingContext)

Initializes a new instance of the IntegrationServicesException class with the specified information and streaming context.

public:
 IntegrationServicesException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
public IntegrationServicesException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.SqlServer.Management.IntegrationServices.IntegrationServicesException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.SqlServer.Management.IntegrationServices.IntegrationServicesException
Public Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The serialization info.

context
StreamingContext

The streaming context.

Applies to

IntegrationServicesException(String, Exception)

Initializes a new instance of the IntegrationServicesException class with the specified exception message.

public:
 IntegrationServicesException(System::String ^ message, Exception ^ innerException);
public IntegrationServicesException (string message, Exception innerException);
new Microsoft.SqlServer.Management.IntegrationServices.IntegrationServicesException : string * Exception -> Microsoft.SqlServer.Management.IntegrationServices.IntegrationServicesException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The exception message.

innerException
Exception

A throwing exception.

Applies to