exception documentation

class MaxRetryError(RequestError): (source)

View In Hierarchy

Raised when the maximum number of retries is exceeded. :param pool: The connection pool :type pool: :class:`~urllib3.connectionpool.HTTPConnectionPool` :param string url: The requested Url :param exceptions.Exception reason: The underlying error

Method __init__ Undocumented
Instance Variable reason Undocumented

Inherited from RequestError:

Method __reduce__ Undocumented
Instance Variable url Undocumented

Inherited from PoolError (via RequestError):

Instance Variable pool Undocumented
def __init__(self, pool, url, reason=None): (source)

Undocumented