Freigeben über


RouteCreationException Konstruktoren

Definition

Überlädt

RouteCreationException(String)

Initialisiert eine neue Instanz der RouteCreationException-Klasse mit einer angegebenen Fehlermeldung.

RouteCreationException(String, Exception)

Initialisiert eine neue Instanz der RouteCreationException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.

RouteCreationException(String)

Quelle:
RouteCreationException.cs
Quelle:
RouteCreationException.cs
Quelle:
RouteCreationException.cs

Initialisiert eine neue Instanz der RouteCreationException-Klasse mit einer angegebenen Fehlermeldung.

public:
 RouteCreationException(System::String ^ message);
public RouteCreationException (string message);
new Microsoft.AspNetCore.Routing.RouteCreationException : string -> Microsoft.AspNetCore.Routing.RouteCreationException
Public Sub New (message As String)

Parameter

message
String

Die Meldung, in der der Fehler beschrieben wird.

Gilt für:

RouteCreationException(String, Exception)

Quelle:
RouteCreationException.cs
Quelle:
RouteCreationException.cs
Quelle:
RouteCreationException.cs

Initialisiert eine neue Instanz der RouteCreationException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.

public:
 RouteCreationException(System::String ^ message, Exception ^ innerException);
public RouteCreationException (string message, Exception innerException);
new Microsoft.AspNetCore.Routing.RouteCreationException : string * Exception -> Microsoft.AspNetCore.Routing.RouteCreationException
Public Sub New (message As String, innerException As Exception)

Parameter

message
String

Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.

innerException
Exception

Die Ausnahme, die die Ursache der aktuellen Ausnahme ist.

Gilt für: