σ
ίΘ[c           @` s    d  Z  d d l m Z m Z m Z m Z d e f d     YZ d e e f d     YZ	 d e f d     YZ
 d	 e e f d
     YZ d e f d     YZ d S(   uΓ   
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.
i    (   t   absolute_importt   divisiont   print_functiont   unicode_literalst   AstropyWarningc           B` s   e  Z d  Z RS(   u   
    The base warning class from which all Astropy warnings should inherit.

    Any warning inheriting from this class is handled by the Astropy logger.
    (   t   __name__t
   __module__t   __doc__(    (    (    s7   lib/python2.7/site-packages/astropy/utils/exceptions.pyR      s   t   AstropyUserWarningc           B` s   e  Z d  Z RS(   ug   
    The primary warning class for Astropy.

    Use this if you do not need a specific sub-class.
    (   R   R   R   (    (    (    s7   lib/python2.7/site-packages/astropy/utils/exceptions.pyR      s   t   AstropyDeprecationWarningc           B` s   e  Z d  Z RS(   u;   
    A warning class to indicate a deprecated feature.
    (   R   R   R   (    (    (    s7   lib/python2.7/site-packages/astropy/utils/exceptions.pyR	      s   t    AstropyPendingDeprecationWarningc           B` s   e  Z d  Z RS(   uF   
    A warning class to indicate a soon-to-be deprecated feature.
    (   R   R   R   (    (    (    s7   lib/python2.7/site-packages/astropy/utils/exceptions.pyR
   !   s   t)   AstropyBackwardsIncompatibleChangeWarningc           B` s   e  Z d  Z RS(   uω   
    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.
    (   R   R   R   (    (    (    s7   lib/python2.7/site-packages/astropy/utils/exceptions.pyR   '   s   N(   R   t
   __future__R    R   R   R   t   WarningR   t   UserWarningR   R	   t   PendingDeprecationWarningR
   R   (    (    (    s7   lib/python2.7/site-packages/astropy/utils/exceptions.pyt   <module>   s   "