mgn / Client / exceptions / ServiceQuotaExceededException

ServiceQuotaExceededException#

class mgn.Client.exceptions.ServiceQuotaExceededException#

The request could not be completed because its exceeded the service quota.

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

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

Structure

  • (dict) –

    The request could not be completed because its exceeded the service quota.

    • code (string) –

    • message (string) –

    • quotaCode (string) –

      Exceeded the service quota code.

    • quotaValue (integer) –

      Exceeded the service quota value.

    • resourceId (string) –

      Exceeded the service quota resource ID.

    • resourceType (string) –

      Exceeded the service quota resource type.

    • serviceCode (string) –

      Exceeded the service quota service code.

    • 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.