GildedRose-Refactoring-Kata/venv/Lib/site-packages/approvaltests/reporter_missing_exception.py

8 lines
273 B
Python

class ReporterMissingException(BaseException):
def __init__(self, key):
super().__init__(self)
self.value = key
def __str__(self):
return f"Could not find {repr(self.value)} in the environment, perhaps you need to configure your reporter."