Added Exception for not ready methods
This commit is contained in:
parent
08dafb6459
commit
62cd9feb55
9
pyrmv/errors/not_ready.py
Normal file
9
pyrmv/errors/not_ready.py
Normal 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__
|
Loading…
Reference in New Issue
Block a user