MissingPrimaryKeyException Constructors

Definition

Initializes a new instance of the MissingPrimaryKeyException class.

Overloads

Name Description
MissingPrimaryKeyException()

Initializes a new instance of the MissingPrimaryKeyException class.

MissingPrimaryKeyException(String)

Initializes a new instance of the MissingPrimaryKeyException class with the specified string.

MissingPrimaryKeyException(SerializationInfo, StreamingContext)

Initializes a new instance of the MissingPrimaryKeyException class with serialization information.

MissingPrimaryKeyException(String, Exception)

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

MissingPrimaryKeyException()

Initializes a new instance of the MissingPrimaryKeyException class.

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

Applies to

MissingPrimaryKeyException(String)

Initializes a new instance of the MissingPrimaryKeyException class with the specified string.

public:
 MissingPrimaryKeyException(System::String ^ s);
public MissingPrimaryKeyException(string s);
new System.Data.MissingPrimaryKeyException : string -> System.Data.MissingPrimaryKeyException
Public Sub New (s As String)

Parameters

s
String

The string to display when the exception is thrown.

Applies to

MissingPrimaryKeyException(SerializationInfo, StreamingContext)

Initializes a new instance of the MissingPrimaryKeyException class with serialization information.

protected:
 MissingPrimaryKeyException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected MissingPrimaryKeyException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.MissingPrimaryKeyException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.MissingPrimaryKeyException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

info
SerializationInfo

The data that is required to serialize or deserialize an object.

context
StreamingContext

A description of the source and destination of the specified serialized stream.

See also

Applies to

MissingPrimaryKeyException(String, Exception)

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

public:
 MissingPrimaryKeyException(System::String ^ message, Exception ^ innerException);
public MissingPrimaryKeyException(string message, Exception innerException);
new System.Data.MissingPrimaryKeyException : string * Exception -> System.Data.MissingPrimaryKeyException
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, or a null reference (Nothing in Visual Basic) if no inner exception is specified.

Applies to