Skip to content

Instantly share code, notes, and snippets.

@ambv
Created March 14, 2016 07:05
Show Gist options
  • Save ambv/5925849ac299cd15386d to your computer and use it in GitHub Desktop.
Save ambv/5925849ac299cd15386d to your computer and use it in GitHub Desktop.
def func():
try:
raise ValueError('ve')
except Exception as e:
handle_exception(e)
def handle_exception(e):
if 'some terrible thing' in e.args[0]:
raise
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment