didier/database/exceptions/currency.py

10 lines
273 B
Python
Raw Normal View History

2022-07-11 22:23:38 +02:00
__all__ = ["DoubleNightly", "NotEnoughDinks"]
2022-06-30 21:17:48 +02:00
class DoubleNightly(Exception):
"""Exception raised when claiming nightlies multiple times per day"""
2022-07-03 17:44:16 +02:00
class NotEnoughDinks(Exception):
"""Exception raised when trying to do something you don't have the Dinks for"""