Skip to content

Instantly share code, notes, and snippets.

@alex-eri
Created July 1, 2016 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-eri/69c9eee50353fc57fb442380f1c70d34 to your computer and use it in GitHub Desktop.
Save alex-eri/69c9eee50353fc57fb442380f1c70d34 to your computer and use it in GitHub Desktop.
try:
code
except RuntimeError as e:
print(e)
except DatabaseError as e:
reconnect()
print(e)
except Exception as e:
print(e)
exit(-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment