mirror of
https://github.com/stijndcl/didier.git
synced 2026-04-22 06:55:47 +02:00
13 lines
412 B
Python
13 lines
412 B
Python
__all__ = ["DoubleNightly", "NotEnoughDinks", "SavingsCapExceeded"]
|
|
|
|
|
|
class DoubleNightly(Exception):
|
|
"""Exception raised when claiming nightlies multiple times per day"""
|
|
|
|
|
|
class NotEnoughDinks(Exception):
|
|
"""Exception raised when trying to do something you don't have the Dinks for"""
|
|
|
|
|
|
class SavingsCapExceeded(Exception):
|
|
"""Exception raised when trying to save more Dinks than the cap allows"""
|