Partager via


FunctionFailedException Constructeurs

Définition

Surcharges

FunctionFailedException(String)

Initialise une nouvelle instance d'un objet FunctionFailedException.

FunctionFailedException(String, Exception)

Initialise une nouvelle instance d'un objet FunctionFailedException.

FunctionFailedException(String)

Source:
FunctionFailedException.cs

Initialise une nouvelle instance d'un objet 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)

Paramètres

message
String

Message décrivant où rechercher plus de détails.

S’applique à

FunctionFailedException(String, Exception)

Source:
FunctionFailedException.cs

Initialise une nouvelle instance d'un objet 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)

Paramètres

message
String

Message décrivant où rechercher plus de détails.

innerException
Exception

Exception qui a provoqué l’échec de la fonction.

S’applique à