2021-10-28 17:39:13 +05:30

7 lines
257 B
Python

# exceptions/raising.py
# This is not a valid Python module - Don't run it.
>>> raise NotImplementedError("I'm afraid I can't do that")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NotImplementedError: I'm afraid I can't do that