Jaa


ThrottleException Constructors

Definition

Overloads

ThrottleException()

Initializes a new instance of the ThrottleException class.

ThrottleException(String)

Initializes a new instance of the ThrottleException class with an exception message.

ThrottleException(String, Exception)

Initializes a new instance of the ThrottleException class with an exception message and inner exception.

ThrottleException()

Initializes a new instance of the ThrottleException class.

public ThrottleException ();
Public Sub New ()

Applies to

ThrottleException(String)

Initializes a new instance of the ThrottleException class with an exception message.

public ThrottleException (string message);
new Microsoft.Bot.Connector.Authentication.ThrottleException : string -> Microsoft.Bot.Connector.Authentication.ThrottleException
Public Sub New (message As String)

Parameters

message
String

The exception message.

Applies to

ThrottleException(String, Exception)

Initializes a new instance of the ThrottleException class with an exception message and inner exception.

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

Parameters

message
String

The exception message.

innerException
Exception

The inner exception.

Applies to