Skip to content
Snippets Groups Projects
Commit e276753b authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

tests: Add testcases for catching user Exception subclasses.

parent 91e556af
No related branches found
No related tags found
No related merge requests found
......@@ -5,3 +5,18 @@ e = MyExc(100, "Some error")
print(e)
print(repr(e))
print(e.args)
try:
raise MyExc("Some error")
except MyExc as e:
print("Caught exception:", repr(e))
try:
raise MyExc("Some error2")
except Exception as e:
print("Caught exception:", repr(e))
try:
raise MyExc("Some error2")
except:
print("Caught user exception")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment