Freigeben über


FunctionFailedException Konstruktoren

Definition

Überlädt

FunctionFailedException(String)

Initialisiert eine neue Instanz von FunctionFailedException.

FunctionFailedException(String, Exception)

Initialisiert eine neue Instanz von FunctionFailedException.

FunctionFailedException(String)

Quelle:
FunctionFailedException.cs

Initialisiert eine neue Instanz von FunctionFailedException.

public FunctionFailedException (string message);
new Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionFailedException : string -> Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionFailedException
Public Sub New (message As String)

Parameter

message
String

Eine Meldung, die beschreibt, wo nach weiteren Details gesucht werden soll.

Gilt für:

FunctionFailedException(String, Exception)

Quelle:
FunctionFailedException.cs

Initialisiert eine neue Instanz von FunctionFailedException.

public FunctionFailedException (string message, Exception innerException);
new Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionFailedException : string * Exception -> Microsoft.Azure.WebJobs.Extensions.DurableTask.FunctionFailedException
Public Sub New (message As String, innerException As Exception)

Parameter

message
String

Eine Meldung, die beschreibt, wo nach weiteren Details gesucht werden soll.

innerException
Exception

Die Ausnahme, die dazu führte, dass die Funktion fehlschlägt.

Gilt für: