QApps / Client / exceptions / ServiceQuotaExceededException

ServiceQuotaExceededException#

class QApps.Client.exceptions.ServiceQuotaExceededException#

The requested operation could not be completed because it would exceed the service’s quota or limit.

Example

try:
  ...
except client.exceptions.ServiceQuotaExceededException as e:
  print(e.response)
response#

The parsed error response. All exceptions have a top level Error key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.

Syntax

{
    'message': 'string',
    'resourceId': 'string',
    'resourceType': 'string',
    'serviceCode': 'string',
    'quotaCode': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    The requested operation could not be completed because it would exceed the service’s quota or limit.

    • message (string) –

    • resourceId (string) –

      The unique identifier of the resource

    • resourceType (string) –

      The type of the resource

    • serviceCode (string) –

      The code for the service where the quota was exceeded

    • quotaCode (string) –

      The code of the quota that was exceeded

    • Error (dict) – Normalized access to common exception attributes.

      • Code (string) – An identifier specifying the exception type.

      • Message (string) – A descriptive message explaining why the exception occured.