circuitpython/tests/basics/subclass-native3.py

8 lines
101 B
Python
Raw Normal View History

class MyExc(Exception):
pass
e = MyExc(100, "Some error")
print(e)
print(repr(e))
print(e.args)