PythonRMV/src/pyrmv/errors/not_ready.py
profitroll f31fa65d78
Some checks reported warnings
Tests / test (3.11) (push) Has been cancelled
Tests / test (3.8) (push) Has been cancelled
Tests / test (3.9) (push) Has been cancelled
Tests / test (3.10) (push) Has been cancelled
Small refactor and isort+black formatting
2023-11-24 11:21:02 +01:00

11 lines
204 B
Python

class NotReadyYetError(Exception):
"""
This method is not finished yet.
"""
def __init__(self):
super().__init__(self.__doc__)
def __str__(self):
return self.__doc__