U
    ·ddl  ã                   @   sF   d Z dddgZG dd„ deƒZG dd„ deeƒZG dd„ deeƒZdS )z_This module contains classes used for warnings issued by this library.

.. versionadded:: 20.0
ÚPTBDeprecationWarningÚPTBRuntimeWarningÚPTBUserWarningc                   @   s   e Zd ZdZdZdS )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   r   r   ú5/tmp/pip-unpacked-wheel-e3anp165/telegram/warnings.pyr      s   c                   @   s   e Zd ZdZdZdS )r   ze
    Custom runtime warning class used for warnings in this library.

    .. versionadded:: 20.0
    r   Nr   r   r   r   r   r   '   s   c                   @   s   e Zd ZdZdZdS )r   z¢
    Custom warning class for deprecations in this library.

    .. versionchanged:: 20.0
       Renamed TelegramDeprecationWarning to PTBDeprecationWarning.
    r   Nr   r   r   r   r   r   4   s   N)r	   Ú__all__ÚUserWarningr   ÚRuntimeWarningr   ÚDeprecationWarningr   r   r   r   r   Ú<module>   s   
