
    ,hO!                       d Z ddlmZ ddlZddlZej
                  rddlmZmZ g dZ	 G d de
      Z G d	 d
e      Z G d de      Z G d de      Z G d de      Z G d de      Z G d de      Z G d de      Z G d de      Z G d de      Z G d de      Z G d de      Z G d d e      Z G d! d"e      Z G d# d$e      Z G d% d&e      Z G d' d(e      Z G d) d*e      Z G d+ d,e      Z G d- d.e      Z G d/ d0e      Z G d1 d2e
      Z  G d3 d4e
      Z! G d5 d6e"      Z# G d7 d8e#      Z$ G d9 d:e#      Z% G d; d<e#      Z& G d= d>e#      Z'ejP                  	 d@	 	 	 dAd?       Z)y)Bul  
Our exception hierarchy:

* HTTPError
  x RequestError
    + TransportError
      - TimeoutException
        · ConnectTimeout
        · ReadTimeout
        · WriteTimeout
        · PoolTimeout
      - NetworkError
        · ConnectError
        · ReadError
        · WriteError
        · CloseError
      - ProtocolError
        · LocalProtocolError
        · RemoteProtocolError
      - ProxyError
      - UnsupportedProtocol
    + DecodingError
    + TooManyRedirects
  x HTTPStatusError
* InvalidURL
* CookieConflict
* StreamError
  x StreamConsumed
  x StreamClosed
  x ResponseNotRead
  x RequestNotRead
    )annotationsN   )RequestResponse)
CloseErrorConnectErrorConnectTimeoutCookieConflictDecodingError	HTTPErrorHTTPStatusError
InvalidURLLocalProtocolErrorNetworkErrorPoolTimeoutProtocolError
ProxyError	ReadErrorReadTimeoutRemoteProtocolErrorRequestErrorRequestNotReadResponseNotReadStreamClosedStreamConsumedStreamErrorTimeoutExceptionTooManyRedirectsTransportErrorUnsupportedProtocol
WriteErrorWriteTimeoutc                  \     e Zd ZdZd fdZedd       Zej                  dd       Z xZS )r   a  
    Base class for `RequestError` and `HTTPStatusError`.

    Useful for `try...except` blocks when issuing a request,
    and then calling `.raise_for_status()`.

    For example:

    ```
    try:
        response = httpx.get("https://www.example.com")
        response.raise_for_status()
    except httpx.HTTPError as exc:
        print(f"HTTP Exception for {exc.request.url} - {exc}")
    ```
    c                2    t         |   |       d | _        y Nsuper__init___requestselfmessage	__class__s     S/var/www/html/Resume-Scraper/venv/lib/python3.12/site-packages/httpx/_exceptions.pyr(   zHTTPError.__init__\   s    !(,    c                H    | j                   t        d      | j                   S )Nz'The .request property has not been set.)r)   RuntimeError)r+   s    r.   requestzHTTPError.request`   s"    == HII}}r/   c                    || _         y r%   )r)   )r+   r2   s     r.   r2   zHTTPError.requestf   s	    r/   r,   strreturnNone)r6   r   )r2   r   r6   r7   )	__name__
__module____qualname____doc__r(   propertyr2   setter__classcell__r-   s   @r.   r   r   J   s9    "-  
 ^^   r/   r   c                  *     e Zd ZdZddd fdZ xZS )r   zS
    Base class for all exceptions that may occur when issuing a `.request()`.
    N)r2   c               2    t         |   |       || _        y r%   r&   )r+   r,   r2   r-   s      r.   r(   zRequestError.__init__p   s    !  r/   )r,   r5   r2   Request | Noner6   r7   r8   r9   r:   r;   r(   r>   r?   s   @r.   r   r   k   s     CG    r/   r   c                      e Zd ZdZy)r   zU
    Base class for all exceptions that occur at the level of the Transport API.
    Nr8   r9   r:   r;    r/   r.   r   r   {       r/   r   c                      e Zd ZdZy)r   zM
    The base class for timeout errors.

    An operation has timed out.
    NrE   rF   r/   r.   r   r          r/   r   c                      e Zd ZdZy)r	   z1
    Timed out while connecting to the host.
    NrE   rF   r/   r.   r	   r	      rG   r/   r	   c                      e Zd ZdZy)r   z7
    Timed out while receiving data from the host.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                      e Zd ZdZy)r"   z3
    Timed out while sending data to the host.
    NrE   rF   r/   r.   r"   r"      rG   r/   r"   c                      e Zd ZdZy)r   zB
    Timed out waiting to acquire a connection from the pool.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                      e Zd ZdZy)r   zo
    The base class for network-related errors.

    An error occurred while interacting with the network.
    NrE   rF   r/   r.   r   r      rI   r/   r   c                      e Zd ZdZy)r   z2
    Failed to receive data from the network.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                      e Zd ZdZy)r!   z2
    Failed to send data through the network.
    NrE   rF   r/   r.   r!   r!      rG   r/   r!   c                      e Zd ZdZy)r   z+
    Failed to establish a connection.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                      e Zd ZdZy)r   z'
    Failed to close a connection.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                      e Zd ZdZy)r   zB
    An error occurred while establishing a proxy connection.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                      e Zd ZdZy)r    z
    Attempted to make a request to an unsupported protocol.

    For example issuing a request to `ftp://www.example.com`.
    NrE   rF   r/   r.   r    r       rI   r/   r    c                      e Zd ZdZy)r   z$
    The protocol was violated.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                      e Zd ZdZy)r   z
    A protocol was violated by the client.

    For example if the user instantiated a `Request` instance explicitly,
    failed to include the mandatory `Host:` header, and then issued it directly
    using `client.send()`.
    NrE   rF   r/   r.   r   r      s    r/   r   c                      e Zd ZdZy)r   z^
    The protocol was violated by the server.

    For example, returning malformed HTTP.
    NrE   rF   r/   r.   r   r      rI   r/   r   c                      e Zd ZdZy)r   zG
    Decoding of the response failed, due to a malformed encoding.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                      e Zd ZdZy)r   z
    Too many redirects.
    NrE   rF   r/   r.   r   r      rG   r/   r   c                  $     e Zd ZdZd fdZ xZS )r   z|
    The response had an error HTTP status of 4xx or 5xx.

    May be raised when calling `response.raise_for_status()`
    c               @    t         |   |       || _        || _        y r%   )r'   r(   r2   response)r+   r,   r2   r\   r-   s       r.   r(   zHTTPStatusError.__init__	  s    ! r/   )r,   r5   r2   r   r\   r   r6   r7   rC   r?   s   @r.   r   r     s    ! !r/   r   c                  $     e Zd ZdZd fdZ xZS )r   z7
    URL is improperly formed or cannot be parsed.
    c                $    t         |   |       y r%   r'   r(   r*   s     r.   r(   zInvalidURL.__init__      !r/   r4   rC   r?   s   @r.   r   r     s    " "r/   r   c                  $     e Zd ZdZd fdZ xZS )r
   z
    Attempted to lookup a cookie by name, but multiple cookies existed.

    Can occur when calling `response.cookies.get(...)`.
    c                $    t         |   |       y r%   r_   r*   s     r.   r(   zCookieConflict.__init__  r`   r/   r4   rC   r?   s   @r.   r
   r
     s    " "r/   r
   c                  $     e Zd ZdZd fdZ xZS )r   z
    The base class for stream exceptions.

    The developer made an error in accessing the request stream in
    an invalid way.
    c                $    t         |   |       y r%   r_   r*   s     r.   r(   zStreamError.__init__1  r`   r/   r4   rC   r?   s   @r.   r   r   )  s    " "r/   r   c                  $     e Zd ZdZd fdZ xZS )r   z]
    Attempted to read or stream content, but the content has already
    been streamed.
    c                (    d}t         |   |       y )Na]  Attempted to read or stream some content, but the content has already been streamed. For requests, this could be due to passing a generator as request content, and then receiving a redirect response or a secondary request as part of an authentication flow.For responses, this could be due to attempting to stream the response content more than once.r_   r*   s     r.   r(   zStreamConsumed.__init__;  s    & 	 	!r/   r6   r7   rC   r?   s   @r.   r   r   5  s    
	" 	"r/   r   c                  $     e Zd ZdZd fdZ xZS )r   z\
    Attempted to read or stream response content, but the request has been
    closed.
    c                (    d}t         |   |       y )NzDAttempted to read or stream content, but the stream has been closed.r_   r*   s     r.   r(   zStreamClosed.__init__M  s    U 	 	!r/   rg   rC   r?   s   @r.   r   r   G  s    
" "r/   r   c                  $     e Zd ZdZd fdZ xZS )r   zY
    Attempted to access streaming response content, without having called `read()`.
    c                (    d}t         |   |       y )NzOAttempted to access streaming response content, without having called `read()`.r_   r*   s     r.   r(   zResponseNotRead.__init__Y      / 	 	!r/   rg   rC   r?   s   @r.   r   r   T      " "r/   r   c                  $     e Zd ZdZd fdZ xZS )r   zX
    Attempted to access streaming request content, without having called `read()`.
    c                (    d}t         |   |       y )NzNAttempted to access streaming request content, without having called `read()`.r_   r*   s     r.   r(   zRequestNotRead.__init__f  rl   r/   rg   rC   r?   s   @r.   r   r   a  rm   r/   r   c              #  N   K   	 d y# t         $ r}| | |_        |d}~ww xY ww)z
    A context manager that can be used to attach the given request context
    to any `RequestError` exceptions that are raised within the block.
    N)r   r2   )r2   excs     r.   request_contextrr   n  s/      !CK	s   %	 %	""%r%   )r2   rB   r6   ztyping.Iterator[None])*r;   
__future__r   
contextlibtypingTYPE_CHECKING_modelsr   r   __all__	Exceptionr   r   r   r   r	   r   r"   r   r   r   r!   r   r   r   r    r   r   r   r   r   r   r   r
   r1   r   r   r   r   r   contextmanagerrr   rF   r/   r.   <module>r{      s  B #  	*@ 	  B 9   \ ~ % " # " >   <   . N  - L | 
!i 
!" ""Y ""	", 	""[ "$
"; 
"
"k 
"
"[ 
" " r/   