BotException Konstruktoren

Definition

Überlädt

BotException()

Standardkonstruktor

BotException(String)

erstellt eine neue BotException

BotException(String, Exception, Boolean)

umschließt eine Ausnahme in die BotException

BotException()

Standardkonstruktor

public BotException ();
Public Sub New ()

Gilt für:

BotException(String)

erstellt eine neue BotException

public BotException (string message);
new Microsoft.Bot.Builder.Calling.Exceptions.BotException : string -> Microsoft.Bot.Builder.Calling.Exceptions.BotException
Public Sub New (message As String)

Parameter

message
String

Ausnahmemeldung

Gilt für:

BotException(String, Exception, Boolean)

umschließt eine Ausnahme in die BotException

public BotException (string message, Exception innerException, bool extendForInternalExceptionRemark = true);
new Microsoft.Bot.Builder.Calling.Exceptions.BotException : string * Exception * bool -> Microsoft.Bot.Builder.Calling.Exceptions.BotException
Public Sub New (message As String, innerException As Exception, Optional extendForInternalExceptionRemark As Boolean = true)

Parameter

message
String

Ausnahmemeldung

innerException
Exception

Umschlossene Ausnahme

extendForInternalExceptionRemark
Boolean

Wenn true, wird die Nachricht um eine interne Ausnahmemeldung erweitert, und sie wird zur Überprüfung markiert.

Gilt für: