Files
iaai-parser/iaai_scraper/core/exceptions.py
2026-04-10 15:18:57 +03:00

11 lines
303 B
Python

class ScraperError(Exception):
"""Base scraper exception."""
class AntiBotDetectedError(ScraperError):
"""Raised when the target website appears to block automation."""
class SiteStructureChangedError(ScraperError):
"""Raised when the page shape changed and required data is missing."""