d8351ca8a0
This is ugly, just as expected.
8 lines
101 B
Python
8 lines
101 B
Python
class MyExc(Exception):
|
|
pass
|
|
|
|
e = MyExc(100, "Some error")
|
|
print(e)
|
|
print(repr(e))
|
|
print(e.args)
|