Share via


ConcurrentUpdateException Constructors

Definition

Initializes a new instance of the ConcurrentUpdateException class.

Overloads

ConcurrentUpdateException()

Initializes a new instance of the ConcurrentUpdateException class.

ConcurrentUpdateException(SqlException)

Initializes a new instance of the ConcurrentUpdateException class by specifying an inner SQL exception that caused the current exception.

ConcurrentUpdateException(Exception)

Initializes a new instance of the ConcurrentUpdateException class by specifying an inner exception that caused the current exception.

ConcurrentUpdateException(String)

Initializes a new instance of the ConcurrentUpdateException class by specifying the error message that describes the current exception.

ConcurrentUpdateException(SerializationInfo, StreamingContext)

Initializes a new instance of the ConcurrentUpdateException class with serialized data.

ConcurrentUpdateException(String, Exception)

Initializes a new instance of the ConcurrentUpdateException class with an error message and inner exception.

ConcurrentUpdateException()

Initializes a new instance of the ConcurrentUpdateException class.

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

Applies to

ConcurrentUpdateException(SqlException)

Initializes a new instance of the ConcurrentUpdateException class by specifying an inner SQL exception that caused the current exception.

public:
 ConcurrentUpdateException(System::Data::SqlClient::SqlException ^ inner);
public ConcurrentUpdateException (System.Data.SqlClient.SqlException inner);
new Microsoft.EnterpriseManagement.Common.ConcurrentUpdateException : System.Data.SqlClient.SqlException -> Microsoft.EnterpriseManagement.Common.ConcurrentUpdateException
Public Sub New (inner As SqlException)

Parameters

inner
SqlException

The SqlException instance that caused the current exception.

Applies to

ConcurrentUpdateException(Exception)

Initializes a new instance of the ConcurrentUpdateException class by specifying an inner exception that caused the current exception.

public:
 ConcurrentUpdateException(Exception ^ inner);
public ConcurrentUpdateException (Exception inner);
new Microsoft.EnterpriseManagement.Common.ConcurrentUpdateException : Exception -> Microsoft.EnterpriseManagement.Common.ConcurrentUpdateException
Public Sub New (inner As Exception)

Parameters

inner
Exception

The Exception instance that caused the current exception.

Applies to

ConcurrentUpdateException(String)

Initializes a new instance of the ConcurrentUpdateException class by specifying the error message that describes the current exception.

public:
 ConcurrentUpdateException(System::String ^ message);
public ConcurrentUpdateException (string message);
new Microsoft.EnterpriseManagement.Common.ConcurrentUpdateException : string -> Microsoft.EnterpriseManagement.Common.ConcurrentUpdateException
Public Sub New (message As String)

Parameters

message
String

The error message that describes the current exception.

Applies to

ConcurrentUpdateException(SerializationInfo, StreamingContext)

Initializes a new instance of the ConcurrentUpdateException class with serialized data.

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

Parameters

info
SerializationInfo

The SerializationInfo object that holds the serialized object data about the exception being thrown.

context
StreamingContext

The StreamingContext object that contains contextual information about the source or destination.

Applies to

ConcurrentUpdateException(String, Exception)

Initializes a new instance of the ConcurrentUpdateException class with an error message and inner exception.

public:
 ConcurrentUpdateException(System::String ^ message, Exception ^ inner);
public ConcurrentUpdateException (string message, Exception inner);
new Microsoft.EnterpriseManagement.Common.ConcurrentUpdateException : string * Exception -> Microsoft.EnterpriseManagement.Common.ConcurrentUpdateException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that describes the current exception.

inner
Exception

The Exception instance that caused the current exception.

Applies to