Handling Exceptions python 2 code example
Example 1: python catch multiple exceptions
except (IDontLikeYouException, YouAreBeingMeanException) as e:
pass
Example 2: python requests exceptions
try:
r = requests.get(url, params={'s': thing})
except requests.exceptions.RequestException as e: # This is the correct syntax
raise SystemExit(e)