ReplicationAgentException Constructors

Definition

Creates a new instance of the ReplicationAgentException class.

Overloads

ReplicationAgentException()

Creates a new instance of the ReplicationAgentException class.

ReplicationAgentException(String)

Creates a new instance of the ReplicationAgentException class with a specified error message.

ReplicationAgentException(SerializationInfo, StreamingContext)

Creates a new instance of the ReplicationAgentException class with serialized data.

ReplicationAgentException(String, Exception)

Creates a new instance of the ReplicationAgentException class with a specified error message and a reference to the inner exception that is the cause of this exception.

ReplicationAgentException()

Creates a new instance of the ReplicationAgentException class.

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

Remarks

This constructor initializes the Message property of the new instance to a system-supplied message that describes the error.

The following table shows the initial property values for an instance of ReplicationAgentException.

Property Value
InnerException A null reference.
Message A system-supplied localized description.

Applies to

ReplicationAgentException(String)

Creates a new instance of the ReplicationAgentException class with a specified error message.

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

Parameters

message
String

A message that describes the error.

Remarks

The following table shows the initial property values for an instance of ReplicationAgentException.

Property Value
InnerException A null reference.
Message The error message string.

Applies to

ReplicationAgentException(SerializationInfo, StreamingContext)

Creates a new instance of the ReplicationAgentException class with serialized data.

protected:
 ReplicationAgentException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected ReplicationAgentException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.SqlServer.Replication.ReplicationAgentException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.SqlServer.Replication.ReplicationAgentException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The object that holds the serialized object data.

context
StreamingContext

The contextual information about the source or destination.

Remarks

This constructor is called during deserialization to reconstitute the exception object transmitted over a stream.

Applies to

ReplicationAgentException(String, Exception)

Creates a new instance of the ReplicationAgentException class with a specified error message and a reference to the inner exception that is the cause of this exception.

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

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

The exception that is the cause of the current exception.

Remarks

The following table shows the initial property values for an instance of ReplicationAgentException.

Property Value
InnerException The inner exception reference.
Message The error message string.

Applies to