bowl/cheuph/exceptions.py
2019-06-21 11:50:23 +00:00

11 lines
349 B
Python

__all__ = ["MessageSupplyException", "ShouldNeverHappen"]
class MessageSupplyException(Exception):
pass
class ShouldNeverHappen(Exception):
def __init__(self, number: int) -> None:
message = (f"SNV{number:05} - please contact @Garmy with the code on"
" the left if you see this")
super().__init__(message)