Spaces:
Running
Running
File size: 538 Bytes
cbb84f2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | """
Wayback Tweets Exceptions
"""
class GetResponseError(Exception):
"""
Base class for exceptions in get_response.
"""
class ReadTimeoutError(GetResponseError):
"""
Exception raised for read timeout errors.
"""
class ConnectionError(GetResponseError):
"""
Exception raised for connection errors.
"""
class HTTPError(GetResponseError):
"""
Exception raised for HTTP errors.
"""
class EmptyResponseError(GetResponseError):
"""
Exception raised for empty responses.
"""
|