Skip to content

Instantly share code, notes, and snippets.

@lambdaman2
Created October 1, 2012 12:44
Show Gist options
  • Save lambdaman2/3811451 to your computer and use it in GitHub Desktop.
Save lambdaman2/3811451 to your computer and use it in GitHub Desktop.
Python: Catching and throwing exceptions
--- catch:
try:
generateSomeException()
except Exception, e: # Mother of all exceptions
print e
--- throw:
try:
raise Exception, "Something is rotten in the state of Denmark"
except e:
print e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment