2014-04-28 20:28:31 -04:00
|
|
|
class MyExc(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
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")
|