다음을 통해 공유


FunctionFailedException Constructors

Definition

Overloads

FunctionFailedException(String)

Initializes a new instance of a FunctionFailedException.

FunctionFailedException(String, Exception)

Initializes a new instance of a FunctionFailedException.

FunctionFailedException(String)

Source:
FunctionFailedException.cs

Initializes a new instance of a 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)

Parameters

message
String

A message describing where to look for more details.

Applies to

FunctionFailedException(String, Exception)

Source:
FunctionFailedException.cs

Initializes a new instance of a 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)

Parameters

message
String

A message describing where to look for more details.

innerException
Exception

The exception that caused the function to fail.

Applies to