ErrorResponseException コンストラクター

定義

オーバーロード

ErrorResponseException()

ErrorResponseException クラスの新しいインスタンスを初期化します。

ErrorResponseException(String)

ErrorResponseException クラスの新しいインスタンスを初期化します。

ErrorResponseException(String, Exception)

ErrorResponseException クラスの新しいインスタンスを初期化します。

ErrorResponseException()

ErrorResponseException クラスの新しいインスタンスを初期化します。

public ErrorResponseException ();
Public Sub New ()

適用対象

ErrorResponseException(String)

ErrorResponseException クラスの新しいインスタンスを初期化します。

public ErrorResponseException (string message);
new Microsoft.Bot.Schema.ErrorResponseException : string -> Microsoft.Bot.Schema.ErrorResponseException
Public Sub New (message As String)

パラメーター

message
String

例外メッセージです。

適用対象

ErrorResponseException(String, Exception)

ErrorResponseException クラスの新しいインスタンスを初期化します。

public ErrorResponseException (string message, Exception innerException);
new Microsoft.Bot.Schema.ErrorResponseException : string * Exception -> Microsoft.Bot.Schema.ErrorResponseException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外メッセージです。

innerException
Exception

内部例外。

適用対象