in code I have this error
raise ClientError(response_data['data']['error'], response.status_code)
ClientError: (300) corrupt or not supported.
How to catch error 300?
try:
somestuff
except ClientError:
if error = 300: # ?????
print 'catched'
else:
just end the program
Thanks for your help.