odb / Client / exceptions / ServiceQuotaExceededException
ServiceQuotaExceededException¶
- class odb.Client.exceptions.ServiceQuotaExceededException¶
You have 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
{ 'message': 'string', 'resourceId': 'string', 'resourceType': 'string', 'quotaCode': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
You have exceeded the service quota.
message (string) –
resourceId (string) –
The identifier of the resource that exceeded the service quota.
resourceType (string) –
The type of resource that exceeded the service quota.
quotaCode (string) –
The unqiue identifier of the service 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.