SSOOIDC / Client / exceptions / InvalidRequestException
InvalidRequestException¶
- class SSOOIDC.Client.exceptions.InvalidRequestException¶
- Indicates that something is wrong with the input to the request. For example, a required parameter might be missing or out of range. - Example- try: ... except client.exceptions.InvalidRequestException 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- { 'error': 'string', 'reason': 'KMS_NotFoundException'|'KMS_InvalidKeyUsageException'|'KMS_InvalidStateException'|'KMS_DisabledException', 'error_description': 'string', 'Error': { 'Code': 'string', 'Message': 'string' } } - Structure- (dict) – - Indicates that something is wrong with the input to the request. For example, a required parameter might be missing or out of range. - error (string) – - Single error code. For this exception the value will be - invalid_request.
- reason (string) – - A string that uniquely identifies a reason for the error. 
- error_description (string) – - Human-readable text providing additional information, used to assist the client developer in understanding the error that occurred. 
- 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.