This commit is contained in:
Zachary Hampton
2023-09-15 15:17:37 -07:00
parent 325a03eebf
commit ed7e76e4b0
9 changed files with 350 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
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