2021-04-20 03:11:13 -04:00
|
|
|
# test subclassing a native exception
|
|
|
|
|
|
|
|
|
2014-04-28 20:28:31 -04:00
|
|
|
class MyExc(Exception):
|
|
|
|
pass
|
|
|
|
|
2021-04-20 03:11:13 -04:00
|
|
|
|
2014-04-28 20:28:31 -04:00
|
|
|
e = MyExc(100, "Some error")
|
|
|
|
print(e)
|
2014-05-01 18:51:25 -04:00
|
|
|
print(repr(e))
|
2014-04-28 20:28:31 -04:00
|
|
|
print(e.args)
|
2014-05-01 19:30:28 -04:00
|
|
|
|
|
|
|
try:
|
2018-08-17 01:46:04 -04:00
|
|
|
raise MyExc("Some error", 1)
|
2014-05-01 19:30:28 -04:00
|
|
|
except MyExc as e:
|
|
|
|
print("Caught exception:", repr(e))
|
|
|
|
|
|
|
|
try:
|
2018-08-17 01:46:04 -04:00
|
|
|
raise MyExc("Some error2", 2)
|
2014-05-01 19:30:28 -04:00
|
|
|
except Exception as e:
|
|
|
|
print("Caught exception:", repr(e))
|
|
|
|
|
|
|
|
try:
|
|
|
|
raise MyExc("Some error2")
|
|
|
|
except:
|
|
|
|
print("Caught user exception")
|
2021-04-20 03:11:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
class MyStopIteration(StopIteration):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
print(MyStopIteration().value)
|
|
|
|
print(MyStopIteration(1).value)
|
|
|
|
|
|
|
|
|
|
|
|
class MyOSError(OSError):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
print(MyOSError().errno)
|
|
|
|
print(MyOSError(1, "msg").errno)
|