
    > /ik                     V    d Z g dZ G d de      Z G d dee      Z G d dee      Zy)	z_This module contains classes used for warnings issued by this library.

.. versionadded:: 20.0
)PTBDeprecationWarningPTBRuntimeWarningPTBUserWarningc                       e Zd ZdZdZy)r   z
    Custom user warning class used for warnings in this library.

    .. seealso:: :wiki:`Exceptions, Warnings and Logging <Exceptions%2C-Warnings-and-Logging>`

    .. versionadded:: 20.0
     N__name__
__module____qualname____doc__	__slots__r       G/srv/sistema/bot/venv/lib/python3.12/site-packages/telegram/warnings.pyr   r      s     Ir   r   c                       e Zd ZdZdZy)r   ze
    Custom runtime warning class used for warnings in this library.

    .. versionadded:: 20.0
    r   Nr   r   r   r   r   r   &   s     Ir   r   c                       e Zd ZdZdZy)r   z
    Custom warning class for deprecations in this library.

    .. versionchanged:: 20.0
       Renamed TelegramDeprecationWarning to PTBDeprecationWarning.
    r   Nr   r   r   r   r   r   3   s     Ir   r   N)r   __all__UserWarningr   RuntimeWarningr   DeprecationWarningr   r   r   r   <module>r      s;   $
 K	[ 	 N,> r   