Share via


ProviderIncompatibleException Constructors

Definition

Overloads

ProviderIncompatibleException()

Initializes a new instance of ProviderIncompatibleException.

ProviderIncompatibleException(String)

Initializes a new instance of ProviderIncompatibleException with a specialized error message.

ProviderIncompatibleException(String, Exception)

Initializes a new instance of ProviderIncompatibleException that uses a specified error message.

ProviderIncompatibleException()

Initializes a new instance of ProviderIncompatibleException.

public ProviderIncompatibleException ();
Public Sub New ()

Applies to

ProviderIncompatibleException(String)

Initializes a new instance of ProviderIncompatibleException with a specialized error message.

public ProviderIncompatibleException (string message);
new System.Data.Entity.Core.ProviderIncompatibleException : string -> System.Data.Entity.Core.ProviderIncompatibleException
Public Sub New (message As String)

Parameters

message
String

The message that describes the error.

Applies to

ProviderIncompatibleException(String, Exception)

Initializes a new instance of ProviderIncompatibleException that uses a specified error message.

public ProviderIncompatibleException (string message, Exception innerException);
new System.Data.Entity.Core.ProviderIncompatibleException : string * Exception -> System.Data.Entity.Core.ProviderIncompatibleException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message that describes the error.

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