
    > /i                        d Z ddlZddlZej                  rddlmZm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- 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$ejJ                  	 dAd=ejL                  d>   d?ejN                  d   fd@       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
    N   )RequestResponsec                   d     e Zd ZdZdeddf fdZedd       Zej                  d	d       Z xZ	S )
	HTTPErrora  
    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}")
    ```
    messagereturnNc                 2    t         |   |       d | _        y Nsuper__init___requestselfr   	__class__s     G/srv/sistema/bot/venv/lib/python3.12/site-packages/httpx/_exceptions.pyr   zHTTPError.__init__:   s    !48    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   r   s     r   r   zHTTPError.requestD   s	    r   )r	   r   )r   r   r	   N)
__name__
__module____qualname____doc__strr   propertyr   setter__classcell__r   s   @r   r   r   (   sG    "9 9 9  
 ^^   r   r   c                   P     e Zd ZdZdddedej                  d   ddf fdZ xZS )	RequestErrorzS
    Base class for all exceptions that may occur when issuing a `.request()`.
    N)r   r   r   r   r	   c                2    t         |   |       || _        y r   r   )r   r   r   r   s      r   r   zRequestError.__init__N   s     	!  r   )	r   r   r   r   r   typingOptionalr   r    r!   s   @r   r#   r#   I   s:    
 FJ
 
 (.	(B
 	
  
 r   r#   c                       e Zd ZdZy)TransportErrorzU
    Base class for all exceptions that occur at the level of the Transport API.
    Nr   r   r   r    r   r   r(   r(   [       r   r(   c                       e Zd ZdZy)TimeoutExceptionzM
    The base class for timeout errors.

    An operation has timed out.
    Nr)   r*   r   r   r-   r-   d       r   r-   c                       e Zd ZdZy)ConnectTimeoutz1
    Timed out while connecting to the host.
    Nr)   r*   r   r   r0   r0   l   r+   r   r0   c                       e Zd ZdZy)ReadTimeoutz7
    Timed out while receiving data from the host.
    Nr)   r*   r   r   r2   r2   r   r+   r   r2   c                       e Zd ZdZy)WriteTimeoutz3
    Timed out while sending data to the host.
    Nr)   r*   r   r   r4   r4   x   r+   r   r4   c                       e Zd ZdZy)PoolTimeoutzB
    Timed out waiting to acquire a connection from the pool.
    Nr)   r*   r   r   r6   r6   ~   r+   r   r6   c                       e Zd ZdZy)NetworkErrorzo
    The base class for network-related errors.

    An error occurred while interacting with the network.
    Nr)   r*   r   r   r8   r8      r.   r   r8   c                       e Zd ZdZy)	ReadErrorz2
    Failed to receive data from the network.
    Nr)   r*   r   r   r:   r:      r+   r   r:   c                       e Zd ZdZy)
WriteErrorz2
    Failed to send data through the network.
    Nr)   r*   r   r   r<   r<      r+   r   r<   c                       e Zd ZdZy)ConnectErrorz+
    Failed to establish a connection.
    Nr)   r*   r   r   r>   r>      r+   r   r>   c                       e Zd ZdZy)
CloseErrorz'
    Failed to close a connection.
    Nr)   r*   r   r   r@   r@      r+   r   r@   c                       e Zd ZdZy)
ProxyErrorzB
    An error occurred while establishing a proxy connection.
    Nr)   r*   r   r   rB   rB      r+   r   rB   c                       e Zd ZdZy)UnsupportedProtocolz
    Attempted to make a request to an unsupported protocol.

    For example issuing a request to `ftp://www.example.com`.
    Nr)   r*   r   r   rD   rD      r.   r   rD   c                       e Zd ZdZy)ProtocolErrorz$
    The protocol was violated.
    Nr)   r*   r   r   rF   rF      r+   r   rF   c                       e Zd ZdZy)LocalProtocolErrorz
    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()`.
    Nr)   r*   r   r   rH   rH      s    r   rH   c                       e Zd ZdZy)RemoteProtocolErrorz^
    The protocol was violated by the server.

    For example, returning malformed HTTP.
    Nr)   r*   r   r   rJ   rJ      r.   r   rJ   c                       e Zd ZdZy)DecodingErrorzG
    Decoding of the response failed, due to a malformed encoding.
    Nr)   r*   r   r   rL   rL      r+   r   rL   c                       e Zd ZdZy)TooManyRedirectsz
    Too many redirects.
    Nr)   r*   r   r   rN   rN      r+   r   rN   c                   4     e Zd ZdZdeddddddf fd	Z xZS )
HTTPStatusErrorz|
    The response had an error HTTP status of 4xx or 5xx.

    May be raised when calling `response.raise_for_status()`
    r   r   r   responser   r	   Nc                @    t         |   |       || _        || _        y r   )r   r   r   rQ   )r   r   r   rQ   r   s       r   r   zHTTPStatusError.__init__   s      	! r   r   r   r   r   r   r   r    r!   s   @r   rP   rP      s2    !!(1!=G!	! !r   rP   c                   ,     e Zd ZdZdeddf fdZ xZS )
InvalidURLz7
    URL is improperly formed or cannot be parsed.
    r   r	   Nc                 $    t         |   |       y r   r   r   r   s     r   r   zInvalidURL.__init__       !r   rS   r!   s   @r   rU   rU      s     " " " "r   rU   c                   ,     e Zd ZdZdeddf fdZ xZS )CookieConflictz
    Attempted to lookup a cookie by name, but multiple cookies existed.

    Can occur when calling `response.cookies.get(...)`.
    r   r	   Nc                 $    t         |   |       y r   rW   r   s     r   r   zCookieConflict.__init__  rX   r   rS   r!   s   @r   rZ   rZ      s     " " " "r   rZ   c                   ,     e Zd ZdZdeddf fdZ xZS )StreamErrorz
    The base class for stream exceptions.

    The developer made an error in accessing the request stream in
    an invalid way.
    r   r	   Nc                 $    t         |   |       y r   rW   r   s     r   r   zStreamError.__init__  rX   r   rS   r!   s   @r   r]   r]     s     " " " "r   r]   c                   $     e Zd ZdZd fdZ xZS )StreamConsumedz]
    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.rW   r   s     r   r   zStreamConsumed.__init__  s    & 	 	!r   r	   Nr   r   r   r   r   r    r!   s   @r   r`   r`     s    
	" 	"r   r`   c                   $     e Zd ZdZd fdZ xZS )StreamClosedz\
    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.rW   r   s     r   r   zStreamClosed.__init__/  s    U 	 	!r   rb   rc   r!   s   @r   re   re   )  s    
" "r   re   c                   $     e Zd ZdZd fdZ xZS )ResponseNotReadzY
    Attempted to access streaming response content, without having called `read()`.
    c                 (    d}t         |   |       y )NzOAttempted to access streaming response content, without having called `read()`.rW   r   s     r   r   zResponseNotRead.__init__;  s    c!r   rb   rc   r!   s   @r   rh   rh   6      " "r   rh   c                   $     e Zd ZdZd fdZ xZS )RequestNotReadzX
    Attempted to access streaming request content, without having called `read()`.
    c                 (    d}t         |   |       y )NzNAttempted to access streaming request content, without having called `read()`.rW   r   s     r   r   zRequestNotRead.__init__E  s    b!r   rb   rc   r!   s   @r   rl   rl   @  rj   r   rl   r   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#   r   )r   excs     r   request_contextrp   J  s/      !CK	s   %	 %	""%r   ))r   
contextlibr%   TYPE_CHECKING_modelsr   r   	Exceptionr   r#   r(   r-   r0   r2   r4   r6   r8   r:   r<   r>   r@   rB   rD   rF   rH   rJ   rL   rN   rP   rU   rZ   r   r]   r`   re   rh   rl   contextmanagerr&   Iteratorrp   r*   r   r   <module>rw      s  @  	* 	  B 9  $\ ~ % " # " >   <   . N  - L | !i !" ""Y ""	", 	""[ "$
"; 
""k ""[ " *.__Y'__T r   