Skip to content

Instantly share code, notes, and snippets.

@Colorfulstan
Created November 13, 2015 12:25
Show Gist options
  • Save Colorfulstan/48ddfd731bebb64dc568 to your computer and use it in GitHub Desktop.
Save Colorfulstan/48ddfd731bebb64dc568 to your computer and use it in GitHub Desktop.
try catch with stacktrace
import traceback
try:
raise ValueError
except:
tb = traceback.format_exc()
else:
tb = "No error"
finally:
print tb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment