Files
spoolman2/spoolman/exceptions.py
2023-04-03 20:12:29 +02:00

14 lines
168 B
Python

"""Various exceptions used."""
class ItemNotFoundError(Exception):
pass
class ItemDeleteError(Exception):
pass
class ItemCreateError(Exception):
pass