VersionNotFoundException Constructors

Definition

Initializes a new instance of the VersionNotFoundException class.

Overloads

Name Description
VersionNotFoundException()

Initializes a new instance of the VersionNotFoundException class.

VersionNotFoundException(String)

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

VersionNotFoundException(SerializationInfo, StreamingContext)

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

VersionNotFoundException(String, Exception)

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

VersionNotFoundException()

Initializes a new instance of the VersionNotFoundException class.

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

Applies to

VersionNotFoundException(String)

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

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

Parameters

s
String

The string to display when the exception is thrown.

Applies to

VersionNotFoundException(SerializationInfo, StreamingContext)

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

protected:
 VersionNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected VersionNotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.VersionNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.VersionNotFoundException
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

Description of the source and destination of the specified serialized stream.

See also

Applies to

VersionNotFoundException(String, Exception)

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

public:
 VersionNotFoundException(System::String ^ message, Exception ^ innerException);
public VersionNotFoundException(string message, Exception innerException);
new System.Data.VersionNotFoundException : string * Exception -> System.Data.VersionNotFoundException
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