次の方法で共有


FunctionFailedException コンストラクター

定義

オーバーロード

FunctionFailedException(String)

FunctionFailedException の新しいインスタンスを初期化します。

FunctionFailedException(String, Exception)

FunctionFailedException の新しいインスタンスを初期化します。

FunctionFailedException(String)

ソース:
FunctionFailedException.cs

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)

パラメーター

message
String

詳細を検索する場所を説明するメッセージ。

適用対象

FunctionFailedException(String, Exception)

ソース:
FunctionFailedException.cs

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)

パラメーター

message
String

詳細を検索する場所を説明するメッセージ。

innerException
Exception

関数が失敗する原因となった例外。

適用対象