QApps / Client / exceptions / ThrottlingException
ThrottlingException#
- class QApps.Client.exceptions.ThrottlingException#
The requested operation could not be completed because too many requests were sent at once. Wait a bit and try again later.
Example
try: ... except client.exceptions.ThrottlingException 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', 'serviceCode': 'string', 'quotaCode': 'string', 'retryAfterSeconds': 123, 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The requested operation could not be completed because too many requests were sent at once. Wait a bit and try again later.
message (string) –
serviceCode (string) –
The code for the service where the quota was exceeded
quotaCode (string) –
The code of the quota that was exceeded
retryAfterSeconds (integer) –
The number of seconds to wait before retrying the operation
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.