HomeHarvest/homeharvest/exceptions.py

9 lines
209 B
Python
Raw Normal View History

2023-09-15 15:17:37 -07:00
class InvalidSite(Exception):
"""Raised when a provided site is does not exist."""
pass
class InvalidListingType(Exception):
"""Raised when a provided listing type is does not exist."""
pass