mgn / Client / exceptions / ValidationException
ValidationException#
- class mgn.Client.exceptions.ValidationException#
Validate exception.
Example
try: ... except client.exceptions.ValidationException 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
{ 'code': 'string', 'fieldList': [ { 'message': 'string', 'name': 'string' }, ], 'message': 'string', 'reason': 'unknownOperation'|'cannotParse'|'fieldValidationFailed'|'other', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
Validate exception.
code (string) –
fieldList (list) –
Validate exception field list.
(dict) –
Validate exception field.
message (string) –
Validate exception field message.
name (string) –
Validate exception field name.
message (string) –
reason (string) –
Validate exception reason.
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.