
    IR-e                         d Z ddlmZmZ g dZ G d de          Z G d dee          Z G d d	e          Z	 G d
 de
e          Z G d de          Z G d de          Z G d d          Z e            ZdS )z
This module contains errors/exceptions and warnings of general use for
astropy. Exceptions that are specific to a given subpackage should *not* be
here, but rather in the particular subpackage.
    )	ErfaErrorErfaWarning)AstropyWarningAstropyUserWarningAstropyDeprecationWarning AstropyPendingDeprecationWarning)AstropyBackwardsIncompatibleChangeWarningDuplicateRepresentationWarningNoValuec                       e Zd ZdZdS )r   z
    The base warning class from which all Astropy warnings should inherit.

    Any warning inheriting from this class is handled by the Astropy logger.
    N__name__
__module____qualname____doc__     8lib/python3.11/site-packages/astropy/utils/exceptions.pyr   r                 r   r   c                       e Zd ZdZdS )r   zg
    The primary warning class for Astropy.

    Use this if you do not need a specific sub-class.
    Nr   r   r   r   r   r       r   r   r   c                       e Zd ZdZdS )r   z;
    A warning class to indicate a deprecated feature.
    Nr   r   r   r   r   r   (              r   r   c                       e Zd ZdZdS )r   zF
    A warning class to indicate a soon-to-be deprecated feature.
    Nr   r   r   r   r   r   .   r   r   r   c                       e Zd ZdZdS )r	   z
    A warning class indicating a change in astropy that is incompatible
    with previous versions.

    The suggested procedure is to issue this warning for the version in
    which the change occurs, and remove it for all following versions.
    Nr   r   r   r   r	   r	   4   s           r   r	   c                       e Zd ZdZdS )r
   zR
    A warning class indicating a representation name was already registered.
    Nr   r   r   r   r
   r
   >   r   r   r
   c                       e Zd ZdZd ZdS )_NoValuezSpecial keyword value.

    This class may be used as the default value assigned to a
    deprecated keyword in order to check if it has been given a user
    defined value.
    c                     dS )Nz astropy.utils.exceptions.NoValuer   )selfs    r   __repr__z_NoValue.__repr__L   s    11r   N)r   r   r   r   r    r   r   r   r   r   D   s-         2 2 2 2 2r   r   N)r   erfar   r   __all__Warningr   UserWarningr   r   PendingDeprecationWarningr   r	   r
   r   r   r   r   r   <module>r&      st    ( ' ' ' ' ' ' '      W       n              '@.              ^   	2 	2 	2 	2 	2 	2 	2 	2 (**r   