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