EntityCommandCompilationException 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 EntityCommandCompilationException.
Überlädt
| Name | Beschreibung |
|---|---|
| EntityCommandCompilationException() |
Initialisiert eine neue instance von EntityCommandCompilationException. |
| EntityCommandCompilationException(String) |
Initialisiert eine neue instance von EntityCommandCompilationException. |
| EntityCommandCompilationException(String, Exception) |
Initialisiert eine neue instance von EntityCommandCompilationException. |
Hinweise
Weitere Informationen zum Behandeln von Code exceptions finden Sie unter Exception.
EntityCommandCompilationException()
Initialisiert eine neue instance von EntityCommandCompilationException.
public:
EntityCommandCompilationException();
public EntityCommandCompilationException();
Public Sub New ()
Hinweise
Weitere Informationen zum Behandeln von Ausnahmencode finden Sie unter Exception.
Gilt für:
EntityCommandCompilationException(String)
Initialisiert eine neue instance von EntityCommandCompilationException.
public:
EntityCommandCompilationException(System::String ^ message);
public EntityCommandCompilationException(string message);
new System.Data.EntityCommandCompilationException : string -> System.Data.EntityCommandCompilationException
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:
EntityCommandCompilationException(String, Exception)
Initialisiert eine neue instance von EntityCommandCompilationException.
public:
EntityCommandCompilationException(System::String ^ message, Exception ^ innerException);
public EntityCommandCompilationException(string message, Exception innerException);
new System.Data.EntityCommandCompilationException : string * Exception -> System.Data.EntityCommandCompilationException
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 Ausnahmencode finden Sie unter Exception.