Added Exception for not ready methods

This commit is contained in:
Profitroll 2022-10-05 13:08:43 +02:00
parent 08dafb6459
commit 62cd9feb55
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
class NotReadyYetError(Exception):
"""
This method is not finished yet.
"""
def __init__(self):
super().__init__(self.__doc__)
def __str__(self):
return self.__doc__