ProviderIncompatibleException Konstruktoren

Definition

Initialisiert eine neue Instanz von ProviderIncompatibleException.

Überlädt

ProviderIncompatibleException()

Initialisiert eine neue Instanz von ProviderIncompatibleException.

ProviderIncompatibleException(String)

Initialisiert eine neue Instanz von ProviderIncompatibleException mit einer speziellen Fehlermeldung.

ProviderIncompatibleException(String, Exception)

Initialisiert eine neue Instanz von ProviderIncompatibleException, die eine spezielle Fehlermeldung verwendet.

Hinweise

Weitere Informationen über das Behandeln von Ausnahmen im Code finden Sie unter Exception.

ProviderIncompatibleException()

Initialisiert eine neue Instanz von ProviderIncompatibleException.

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

Hinweise

Weitere Informationen über das Behandeln von Ausnahmen im Code finden Sie unter Exception.

Gilt für

ProviderIncompatibleException(String)

Initialisiert eine neue Instanz von ProviderIncompatibleException mit einer speziellen Fehlermeldung.

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

Parameter

message
String

Die Meldung, in der der Fehler beschrieben wird.

Hinweise

Weitere Informationen über das Behandeln von Ausnahmen im Code finden Sie unter Exception.

Gilt für

ProviderIncompatibleException(String, Exception)

Initialisiert eine neue Instanz von ProviderIncompatibleException, die eine spezielle Fehlermeldung verwendet.

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)

Parameter

message
String

Die Meldung, in der der Fehler beschrieben wird.

innerException
Exception

Die Ausnahme, die die aktuelle Ausnahme verursacht hat, oder ein Nullverweis (Nothing in Visual Basic), wenn keine innere Ausnahme angegeben ist.

Hinweise

Weitere Informationen über das Behandeln von Ausnahmen im Code finden Sie unter Exception.

Gilt für