inspectorscan / Client / exceptions / InternalServerException
InternalServerException#
- class inspectorscan.Client.exceptions.InternalServerException#
The request processing has failed because of an unknown error, exception or failure.
Example
try: ... except client.exceptions.InternalServerException 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', 'reason': 'FAILED_TO_GENERATE_SBOM'|'OTHER', 'retryAfterSeconds': 123, 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The request processing has failed because of an unknown error, exception or failure.
message (string) –
reason (string) –
The reason for the validation failure.
retryAfterSeconds (integer) –
The number of seconds to wait before retrying the request.
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.