o
    oi#                     @   s:   d Z ddlZeeZG dd deZG dd deZdS )z<
Exception classes and errors that this package may raise.

    Nc                   @   s   e Zd ZdZdd ZdS )_BadImplementsz6
    Raised when ``__implements__`` is incorrect.
    c                 C   s   t | d|f  d S )Nz7Module %r has a bad or missing value for __implements__)AttributeError__init__)selfmodule r   T/var/www/html/pca-backend/venv/lib/python3.10/site-packages/gevent/monkey/_errors.pyr      s   z_BadImplements.__init__N)__name__
__module____qualname____doc__r   r   r   r   r   r   
   s    r   c                   @   s   e Zd ZdZdS )MonkeyPatchWarningzE
    The type of warnings we issue.

    .. versionadded:: 1.3a2
    N)r	   r
   r   r   r   r   r   r   r      s    r   )	r   logging	getLoggerr	   loggerr   r   RuntimeWarningr   r   r   r   r   <module>   s
   
