11 lines
127 B
Python
11 lines
127 B
Python
|
|
try:
|
||
|
|
foo()
|
||
|
|
except SillyError as se:
|
||
|
|
print(se.args)
|
||
|
|
bar()
|
||
|
|
else:
|
||
|
|
# no exception occurred
|
||
|
|
quux()
|
||
|
|
finally:
|
||
|
|
baz()
|