Condividi tramite


QuotaExceededException Constructors

Definition

Overloads

QuotaExceededException()

Initializes a new instance of the class.

QuotaExceededException(String)

Initializes a new instance of the class with the message string set to the message parameter.

QuotaExceededException(String, Exception)

Initializes a new instance of the class with the message string set to the message parameter and a reference to the inner exception that is the cause of this exception.

QuotaExceededException()

Initializes a new instance of the class.

public QuotaExceededException ();
Public Sub New ()

Applies to

QuotaExceededException(String)

Initializes a new instance of the class with the message string set to the message parameter.

public QuotaExceededException (string message);
new Microsoft.Azure.Devices.Client.Exceptions.QuotaExceededException : string -> Microsoft.Azure.Devices.Client.Exceptions.QuotaExceededException
Public Sub New (message As String)

Parameters

message
String

A description of the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

Applies to

QuotaExceededException(String, Exception)

Initializes a new instance of the class with the message string set to the message parameter and a reference to the inner exception that is the cause of this exception.

public QuotaExceededException (string message, Exception innerException);
new Microsoft.Azure.Devices.Client.Exceptions.QuotaExceededException : string * Exception -> Microsoft.Azure.Devices.Client.Exceptions.QuotaExceededException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

A description of the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

innerException
Exception

The exception that is the cause of the current exception

Applies to