ó
è¾bc           @   s²  d  Z  d Z d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d	 „  ƒ  YZ d
 e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ	 d e f d „  ƒ  YZ
 d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d  e f d! „  ƒ  YZ d" e f d# „  ƒ  YZ d$ e f d% „  ƒ  YZ d& e f d' „  ƒ  YZ d( S()   s‹  distutils.errors

Provides exceptions used by the Distutils modules.  Note that Distutils
modules may raise standard exceptions; in particular, SystemExit is
usually raised for errors that are obviously the end-user's fault
(eg. bad command-line arguments).

This module is safe to use in "from ... import *" mode; it only exports
symbols whose names start with "Distutils" and end with "Error".s   $Id$t   DistutilsErrorc           B   s   e  Z d  Z RS(   s   The root of all Distutils evil.(   t   __name__t
   __module__t   __doc__(    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR       s   t   DistutilsModuleErrorc           B   s   e  Z d  Z RS(   s„   Unable to load an expected module, or to find an expected class
    within some module (in particular, command modules and classes).(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR      s   t   DistutilsClassErrorc           B   s   e  Z d  Z RS(   sÝ   Some command class (or possibly distribution class, if anyone
    feels a need to subclass Distribution) is found not to be holding
    up its end of the bargain, ie. implementing some part of the
    "command "interface.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR      s   t   DistutilsGetoptErrorc           B   s   e  Z d  Z RS(   s7   The option table provided to 'fancy_getopt()' is bogus.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR      s   t   DistutilsArgErrorc           B   s   e  Z d  Z RS(   sa   Raised by fancy_getopt in response to getopt.error -- ie. an
    error in the command line usage.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR      s   t   DistutilsFileErrorc           B   s   e  Z d  Z RS(   sž   Any problems in the filesystem: expected file not found, etc.
    Typically this is for problems that we detect before IOError or
    OSError could be raised.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   !   s   t   DistutilsOptionErrorc           B   s   e  Z d  Z RS(   s‰  Syntactic/semantic errors in command options, such as use of
    mutually conflicting options, or inconsistent options,
    badly-spelled values, etc.  No distinction is made between option
    values originating in the setup script, the command line, config
    files, or what-have-you -- but if we *know* something originated in
    the setup script, we'll raise DistutilsSetupError instead.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR	   &   s   t   DistutilsSetupErrorc           B   s   e  Z d  Z RS(   sq   For errors that can be definitely blamed on the setup script,
    such as invalid keyword arguments to 'setup()'.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR
   .   s   t   DistutilsPlatformErrorc           B   s   e  Z d  Z RS(   sÆ   We don't know how to do something on the current platform (but
    we do know how to do it on some platform) -- eg. trying to compile
    C files on a platform not supported by a CCompiler subclass.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   2   s   t   DistutilsExecErrorc           B   s   e  Z d  Z RS(   s`   Any problems executing an external program (such as the C
    compiler, when compiling C files).(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   7   s   t   DistutilsInternalErrorc           B   s   e  Z d  Z RS(   so   Internal inconsistencies or impossibilities (obviously, this
    should never be seen if the code is working!).(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   ;   s   t   DistutilsTemplateErrorc           B   s   e  Z d  Z RS(   s%   Syntax error in a file list template.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   ?   s   t   DistutilsByteCompileErrorc           B   s   e  Z d  Z RS(   s   Byte compile error.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   B   s   t   CCompilerErrorc           B   s   e  Z d  Z RS(   s#   Some compile/link operation failed.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   F   s   t   PreprocessErrorc           B   s   e  Z d  Z RS(   s.   Failure to preprocess one or more C/C++ files.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   I   s   t   CompileErrorc           B   s   e  Z d  Z RS(   s2   Failure to compile one or more C/C++ source files.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   L   s   t   LibErrorc           B   s   e  Z d  Z RS(   sK   Failure to create a static library from one or more C/C++ object
    files.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   O   s   t	   LinkErrorc           B   s   e  Z d  Z RS(   s]   Failure to link one or more C/C++ object files into an executable
    or shared library file.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   S   s   t   UnknownFileErrorc           B   s   e  Z d  Z RS(   s(   Attempt to process an unknown file type.(   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyR   W   s   N(   R   t   __revision__t	   ExceptionR    R   R   R   R   R   R	   R
   R   R   R   R   R   R   R   R   R   R   R   (    (    (    s&   /usr/lib/python2.7/distutils/errors.pyt   <module>	   s(   