B2BI / Client / exceptions / ServiceQuotaExceededException

ServiceQuotaExceededException#

class B2BI.Client.exceptions.ServiceQuotaExceededException#

Occurs when the calling command attempts to exceed one of the service quotas, for example trying to create a capability when you already have the maximum number of capabilities allowed.

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) –

    Occurs when the calling command attempts to exceed one of the service quotas, for example trying to create a capability when you already have the maximum number of capabilities allowed.

    • message (string) –

    • resourceId (string) –

      The ID for the resource that exceeded the quota, which caused the exception.

    • resourceType (string) –

      The resource type (profile, partnership, transformer, or capability) that exceeded the quota, which caused the exception.

    • serviceCode (string) –

      The code responsible for exceeding the quota, which caused the exception.

    • quotaCode (string) –

      The quota that was exceeded, which caused the exception.

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