Skip to content

Instantly share code, notes, and snippets.

@gabicavalcante
Last active August 29, 2015 14:22
Show Gist options
  • Save gabicavalcante/290a77e429a9cd3d4a60 to your computer and use it in GitHub Desktop.
Save gabicavalcante/290a77e429a9cd3d4a60 to your computer and use it in GitHub Desktop.
class A(Exception):
pass
def f():
raise A
def g():
try:
f()
except A:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment