Inspector2 / Client / exceptions / ServiceQuotaExceededException
ServiceQuotaExceededException#
- class Inspector2.Client.exceptions.ServiceQuotaExceededException#
You have exceeded your service quota. To perform the requested action, remove some of the relevant resources, or use Service Quotas to request a service quota increase.
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', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
You have exceeded your service quota. To perform the requested action, remove some of the relevant resources, or use Service Quotas to request a service quota increase.
message (string) –
resourceId (string) –
The ID of the resource that exceeds a service quota.
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.