NetworkManager / Client / exceptions / ValidationException
ValidationException¶
- class NetworkManager.Client.exceptions.ValidationException¶
- The input fails to satisfy the constraints. - Example- try: ... except client.exceptions.ValidationException as e: print(e.response) - response¶
- The parsed error response. All exceptions have a top level - Errorkey that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.- Syntax- { 'Message': 'string', 'Reason': 'UnknownOperation'|'CannotParse'|'FieldValidationFailed'|'Other', 'Fields': [ { 'Name': 'string', 'Message': 'string' }, ], 'Error': { 'Code': 'string', 'Message': 'string' } } - Structure- (dict) – - The input fails to satisfy the constraints. - Message (string) – 
- Reason (string) – - The reason for the error. 
- Fields (list) – - The fields that caused the error, if applicable. - (dict) – - Describes a validation exception for a field. - Name (string) – - The name of the field. 
- Message (string) – - The message for the field. 
 
 
- 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.