9 lines
202 B
Python
9 lines
202 B
Python
class NotReadyYetError(Exception):
|
|
"""
|
|
This method is not finished yet.
|
|
"""
|
|
def __init__(self):
|
|
super().__init__(self.__doc__)
|
|
|
|
def __str__(self):
|
|
return self.__doc__ |