Share via


QuotaExceededException Constructors

Definition

Overloads

QuotaExceededException()

Initializes a new instance of the QuotaExceededException class.

QuotaExceededException(String)

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

QuotaExceededException(String, Exception)

Initializes a new instance of the QuotaExceededException 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 QuotaExceededException class.

public QuotaExceededException();
Public Sub New ()

Applies to

QuotaExceededException(String)

Initializes a new instance of the QuotaExceededException 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
System.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 QuotaExceededException 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
System.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
System.Exception

The exception that is the cause of the current exception

Applies to