mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-22 09:51:08 +00:00
8 lines
273 B
Python
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."
|