WorkMail / Client / exceptions / InvalidConfigurationException
InvalidConfigurationException#
- class WorkMail.Client.exceptions.InvalidConfigurationException#
The configuration for a resource isn’t valid. A resource must either be able to auto-respond to requests or have at least one delegate associated that can do so on its behalf.
Example
try: ... except client.exceptions.InvalidConfigurationException 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', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The configuration for a resource isn’t valid. A resource must either be able to auto-respond to requests or have at least one delegate associated that can do so on its behalf.
Message (string) –
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.