tests: Add testcases for catching user Exception subclasses.

pull/547/head
Paul Sokolovsky 2014-05-02 02:30:28 +03:00
rodzic 91e556af23
commit e276753b45
1 zmienionych plików z 15 dodań i 0 usunięć

Wyświetl plik

@ -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")