mirror of
https://github.com/Bunsly/HomeHarvest.git
synced 2026-03-04 19:44:29 -08:00
- extra_property_details parameter
- updated docs - classified exception
This commit is contained in:
@@ -4,3 +4,11 @@ class InvalidListingType(Exception):
|
||||
|
||||
class InvalidDate(Exception):
|
||||
"""Raised when only one of date_from or date_to is provided or not in the correct format. ex: 2023-10-23"""
|
||||
|
||||
|
||||
class AuthenticationError(Exception):
|
||||
"""Raised when there is an issue with the authentication process."""
|
||||
def __init__(self, *args, response):
|
||||
super().__init__(*args)
|
||||
|
||||
self.response = response
|
||||
|
||||
Reference in New Issue
Block a user