EntityCommandExecutionException Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue instance von EntityCommandExecutionException.
Überlädt
| Name | Beschreibung |
|---|---|
| EntityCommandExecutionException() |
Initialisiert eine neue instance von EntityCommandExecutionException. |
| EntityCommandExecutionException(String) |
Initialisiert eine neue instance von EntityCommandExecutionException. |
| EntityCommandExecutionException(String, Exception) |
Initialisiert eine neue instance von EntityCommandExecutionException. |
Hinweise
Weitere Informationen zum Behandeln von Code exceptions finden Sie unter Exception.
EntityCommandExecutionException()
Initialisiert eine neue instance von EntityCommandExecutionException.
public:
EntityCommandExecutionException();
public EntityCommandExecutionException();
Public Sub New ()
Hinweise
Weitere Informationen zum Behandeln von Code exceptions finden Sie unter Exception.
Gilt für:
EntityCommandExecutionException(String)
Initialisiert eine neue instance von EntityCommandExecutionException.
public:
EntityCommandExecutionException(System::String ^ message);
public EntityCommandExecutionException(string message);
new System.Data.EntityCommandExecutionException : string -> System.Data.EntityCommandExecutionException
Public Sub New (message As String)
Parameter
- message
- String
Die Meldung, die den Fehler beschreibt.
Hinweise
Weitere Informationen zum Behandeln von Code exceptions finden Sie unter Exception.
Gilt für:
EntityCommandExecutionException(String, Exception)
Initialisiert eine neue instance von EntityCommandExecutionException.
public:
EntityCommandExecutionException(System::String ^ message, Exception ^ innerException);
public EntityCommandExecutionException(string message, Exception innerException);
new System.Data.EntityCommandExecutionException : string * Exception -> System.Data.EntityCommandExecutionException
Public Sub New (message As String, innerException As Exception)
Parameter
- message
- String
Die Fehlermeldung, die den Grund für die Ausnahme erläutert.
- innerException
- Exception
Die Ausnahme, die die aktuelle Ausnahme verursacht hat, oder ein null Verweis (Nothing in Visual Basic), wenn keine innere Ausnahme angegeben wird.
Hinweise
Weitere Informationen zum Behandeln von Code exceptions finden Sie unter Exception.