BillingConductor / Client / exceptions / ServiceLimitExceededException
ServiceLimitExceededException#
- class BillingConductor.Client.exceptions.ServiceLimitExceededException#
The request would cause a service limit to exceed.
Example
try: ... except client.exceptions.ServiceLimitExceededException 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', 'LimitCode': 'string', 'ServiceCode': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The request would cause a service limit to exceed.
Message (string) –
ResourceId (string) –
Identifier of the resource affected.
ResourceType (string) –
Type of the resource affected.
LimitCode (string) –
The unique code identifier of the service limit that is being exceeded.
ServiceCode (string) –
The unique code for the service of the limit that is being 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.