ChangeConflictException Constructors

Definition

Initializes a new instance of the ChangeConflictException class.

Overloads

ChangeConflictException()

Initializes a new instance of the ChangeConflictException class.

ChangeConflictException(String)

Initializes a new instance of the ChangeConflictException class and specifies a message to explain the exception.

ChangeConflictException(String, Exception)

Initializes a new instance of the ChangeConflictException class, specifies a message to explain the exception, and specifies the exception that caused this exception.

ChangeConflictException()

Initializes a new instance of the ChangeConflictException class.

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

Applies to

ChangeConflictException(String)

Initializes a new instance of the ChangeConflictException class and specifies a message to explain the exception.

public:
 ChangeConflictException(System::String ^ message);
public ChangeConflictException (string message);
new System.Data.Linq.ChangeConflictException : string -> System.Data.Linq.ChangeConflictException
Public Sub New (message As String)

Parameters

message
String

The message to be exposed when the exception is thrown.

Applies to

ChangeConflictException(String, Exception)

Initializes a new instance of the ChangeConflictException class, specifies a message to explain the exception, and specifies the exception that caused this exception.

public:
 ChangeConflictException(System::String ^ message, Exception ^ innerException);
public ChangeConflictException (string message, Exception innerException);
new System.Data.Linq.ChangeConflictException : string * Exception -> System.Data.Linq.ChangeConflictException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message to be exposed when the exception is thrown.

innerException
Exception

Specifies the exception of which ChangeConflictException is a result.

Applies to