7 lines
257 B
Python
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
|