
    ~h                     R    d dl mZ  G d de      Z G d de      Z G d de      Zy)	   )OAuth2Errorc                       e Zd ZdZdZy)AuthorizationPendingErrorzThe authorization request is still pending as the end user hasn't
    yet completed the user-interaction steps (Section 3.3).
    authorization_pendingN__name__
__module____qualname____doc__error     Y/opt/mcp/mcp-sentiment/venv/lib/python3.12/site-packages/authlib/oauth2/rfc8628/errors.pyr   r      s     $Er   r   c                       e Zd ZdZdZy)SlowDownErrorzA variant of "authorization_pending", the authorization request is
    still pending and polling should continue, but the interval MUST
    be increased by 5 seconds for this and all subsequent requests.
    	slow_downNr   r   r   r   r   r      s    
 Er   r   c                       e Zd ZdZdZy)ExpiredTokenErrorzThe "device_code" has expired, and the device authorization
    session has concluded.  The client MAY commence a new device
    authorization request but SHOULD wait for user interaction before
    restarting to avoid unnecessary polling.
    expired_tokenNr   r   r   r   r   r      s     Er   r   N)rfc6749.errorsr   r   r   r   r   r   r   <module>r      s,    (
$ $K  r   