ProviderIncompatibleException Constructors

Definitie

Initialiseert een nieuw exemplaar van ProviderIncompatibleException.

Overloads

Name Description
ProviderIncompatibleException()

Initialiseert een nieuw exemplaar van ProviderIncompatibleException.

ProviderIncompatibleException(String)

Initialiseert een nieuw exemplaar van ProviderIncompatibleException een speciaal foutbericht.

ProviderIncompatibleException(String, Exception)

Initialiseert een nieuw exemplaar van ProviderIncompatibleException dat een opgegeven foutbericht gebruikt.

Opmerkingen

Zie voor meer informatie over het afhandelen van uitzonderingen in uw code Exception.

ProviderIncompatibleException()

Initialiseert een nieuw exemplaar van ProviderIncompatibleException.

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

Opmerkingen

Zie voor meer informatie over het afhandelen van uitzonderingen in uw code Exception.

Van toepassing op

ProviderIncompatibleException(String)

Initialiseert een nieuw exemplaar van ProviderIncompatibleException een speciaal foutbericht.

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

Parameters

message
String

Het bericht waarin de fout wordt beschreven.

Opmerkingen

Zie voor meer informatie over het afhandelen van uitzonderingen in uw code Exception.

Van toepassing op

ProviderIncompatibleException(String, Exception)

Initialiseert een nieuw exemplaar van ProviderIncompatibleException dat een opgegeven foutbericht gebruikt.

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

Parameters

message
String

Het bericht waarin de fout wordt beschreven.

innerException
Exception

De uitzondering die de oorzaak is van de huidige uitzondering of een null-verwijzing (Nothing in Visual Basic) als er geen interne uitzondering is opgegeven.

Opmerkingen

Zie voor meer informatie over het afhandelen van uitzonderingen in uw code Exception.

Van toepassing op