xhs_crawler/media_platform/zhihu/exception.py
2024-09-08 00:00:04 +08:00

12 lines
250 B
Python

from httpx import RequestError
class DataFetchError(RequestError):
"""something error when fetch"""
class IPBlockError(RequestError):
"""fetch so fast that the server block us ip"""
class ForbiddenError(RequestError):
"""Forbidden"""