summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_std_except_as_class_runme.py
blob: 386a878bfd0667a16c35eaf73b7a305a95c15206 (plain)
1
2
3
4
5
6
7
8
9
from li_std_except_as_class import *

# std::domain_error hierarchy
try: test_domain_error()
except domain_error: pass
try: test_domain_error()
except logic_error: pass
try: test_domain_error()
except exception: pass