VoiceID / Client / exceptions / ResourceNotFoundException
ResourceNotFoundException#
- class VoiceID.Client.exceptions.ResourceNotFoundException#
The specified resource cannot be found. Check the
ResourceType
and error message for more details.Example
try: ... except client.exceptions.ResourceNotFoundException 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', 'ResourceType': 'BATCH_JOB'|'COMPLIANCE_CONSENT'|'DOMAIN'|'FRAUDSTER'|'SESSION'|'SPEAKER'|'WATCHLIST', 'Error': { 'Code': 'string', 'Message': 'string' } }
Structure
(dict) –
The specified resource cannot be found. Check the
ResourceType
and error message for more details.Message (string) –
ResourceType (string) –
The type of resource which cannot not be found. Possible types are
BATCH_JOB
,COMPLIANCE_CONSENT
,DOMAIN
,FRAUDSTER
,SESSION
andSPEAKER
.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.