mirror of
https://github.com/Marketscrape/marketscrape-web.git
synced 2025-12-23 22:17:56 -05:00
12 lines
372 B
Python
12 lines
372 B
Python
class NoProductsFound(Exception):
|
|
"""Raised when no products matching the given criteria are found."""
|
|
pass
|
|
|
|
class InvalidSimilarityThreshold(Exception):
|
|
"""Raised when an invalid similarity threshold is provided."""
|
|
pass
|
|
|
|
class InvalidDataFormat(Exception):
|
|
"""Raised when the data format is invalid or does not match the expected format."""
|
|
pass
|