This commit is contained in:
esenke
2025-12-08 22:16:31 +08:00
commit 01adcfdf60
305 changed files with 50879 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
class InvalidWktPointArgument(Exception):
"""Raised when the WKT string is not a valid point"""
pass
class InvalidDateRangeArgument(Exception):
"""Raised when the daterange string is not valid"""
pass
class SearchException(Exception):
"""Raised when search endpoint returned a non 200 statuscode"""
pass