Skip to content

Instantly share code, notes, and snippets.

@drewlesueur
Created June 17, 2011 16:44
Show Gist options
  • Save drewlesueur/1031782 to your computer and use it in GitHub Desktop.
Save drewlesueur/1031782 to your computer and use it in GitHub Desktop.
Older python exception handling
def foo():
raise "error!!"
try:
foo()
except Exception, strerror:
print strerror
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment