
~V
                 @   s  d  Z  d d l m Z Gd d   d e  Z Gd d   d e  Z Gd d   d e  Z Gd	 d
   d
 e  Z Gd d   d e  Z Gd d   d e  Z	 Gd d   d e e	  Z
 Gd d   d e	  Z Gd d   d e  Z Gd d   d e  Z Gd d   d e e  Z Gd d   d e e  Z Gd d   d e e  Z Gd d   d e  Z Gd d    d  e e  Z Gd! d"   d" e e  Z Gd# d$   d$ e  Z Gd% d&   d& e  Z Gd' d(   d( e e  Z d) S)*za
requests.exceptions
~~~~~~~~~~~~~~~~~~~

This module contains the set of Requests' exceptions.

   )	HTTPErrorc                   s(   e  Z d  Z d Z   f d d   Z   S)RequestExceptionzOThere was an ambiguous exception that occurred while handling your
    request.c                s   | j  d d  } | |  _ | j  d d  |  _ | d k	 rd |  j rd t | d  rd |  j j |  _ t t |   j | |   d S)zT
        Initialize RequestException with `request` and `response` objects.
        responseNrequest)popr   r   hasattrsuperr   __init__)selfargskwargsr   )	__class__ 5/usr/lib/python3/dist-packages/requests/exceptions.pyr	      s    	zRequestException.__init__)__name__
__module____qualname____doc__r	   r   r   )r   r   r      s   r   c               @   s   e  Z d  Z d Z d S)r   zAn HTTP error occurred.N)r   r   r   r   r   r   r   r   r      s   r   c               @   s   e  Z d  Z d Z d S)ConnectionErrorzA Connection error occurred.N)r   r   r   r   r   r   r   r   r   "   s   r   c               @   s   e  Z d  Z d Z d S)
ProxyErrorzA proxy error occurred.N)r   r   r   r   r   r   r   r   r   &   s   r   c               @   s   e  Z d  Z d Z d S)SSLErrorzAn SSL error occurred.N)r   r   r   r   r   r   r   r   r   *   s   r   c               @   s   e  Z d  Z d Z d S)TimeoutzThe request timed out.

    Catching this error will catch both
    :exc:`~requests.exceptions.ConnectTimeout` and
    :exc:`~requests.exceptions.ReadTimeout` errors.
    N)r   r   r   r   r   r   r   r   r   .   s   r   c               @   s   e  Z d  Z d Z d S)ConnectTimeoutzThe request timed out while trying to connect to the remote server.

    Requests that produced this error are safe to retry.
    N)r   r   r   r   r   r   r   r   r   7   s   r   c               @   s   e  Z d  Z d Z d S)ReadTimeoutz@The server did not send any data in the allotted amount of time.N)r   r   r   r   r   r   r   r   r   >   s   r   c               @   s   e  Z d  Z d Z d S)URLRequiredz*A valid URL is required to make a request.N)r   r   r   r   r   r   r   r   r   B   s   r   c               @   s   e  Z d  Z d Z d S)TooManyRedirectszToo many redirects.N)r   r   r   r   r   r   r   r   r   F   s   r   c               @   s   e  Z d  Z d Z d S)MissingSchemaz/The URL schema (e.g. http or https) is missing.N)r   r   r   r   r   r   r   r   r   J   s   r   c               @   s   e  Z d  Z d Z d S)InvalidSchemaz"See defaults.py for valid schemas.N)r   r   r   r   r   r   r   r   r   N   s   r   c               @   s   e  Z d  Z d Z d S)
InvalidURLz' The URL provided was somehow invalid. N)r   r   r   r   r   r   r   r   r   R   s   r   c               @   s   e  Z d  Z d Z d S)ChunkedEncodingErrorz?The server declared chunked encoding but sent an invalid chunk.N)r   r   r   r   r   r   r   r   r   V   s   r   c               @   s   e  Z d  Z d Z d S)ContentDecodingErrorz!Failed to decode response contentN)r   r   r   r   r   r   r   r   r    Z   s   r    c               @   s   e  Z d  Z d Z d S)StreamConsumedErrorz2The content for this response was already consumedN)r   r   r   r   r   r   r   r   r!   ^   s   r!   c               @   s   e  Z d  Z d Z d S)
RetryErrorzCustom retries logic failedN)r   r   r   r   r   r   r   r   r"   b   s   r"   c               @   s   e  Z d  Z d Z d S)RequestsWarningzBase warning for Requests.N)r   r   r   r   r   r   r   r   r#   i   s   r#   c               @   s   e  Z d  Z d Z d S)FileModeWarningzT
    A file was opened in text mode, but Requests determined its binary length.
    N)r   r   r   r   r   r   r   r   r$   n   s   r$   N)r   Zpackages.urllib3.exceptionsr   ZBaseHTTPErrorIOErrorr   r   r   r   r   r   r   r   r   
ValueErrorr   r   r   r   r    	TypeErrorr!   r"   Warningr#   DeprecationWarningr$   r   r   r   r   <module>	   s(   	