Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 1 | """distutils.errors |
| 2 | |
| 3 | Provides exceptions used by the Distutils modules. Note that Distutils |
| 4 | modules may raise standard exceptions; in particular, SystemExit is |
| 5 | usually raised for errors that are obviously the end-user's fault |
| 6 | (eg. bad command-line arguments). |
| 7 | |
Andrew M. Kuchling | f6756e8 | 2002-11-14 01:58:48 +0000 | [diff] [blame] | 8 | This module is safe to use in "from ... import *" mode; it only exports |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 9 | symbols whose names start with "Distutils" and end with "Error".""" |
| 10 | |
Greg Ward | 3ce77fd | 2000-03-02 01:49:45 +0000 | [diff] [blame] | 11 | __revision__ = "$Id$" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 12 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 13 | class DistutilsError(Exception): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 14 | """The root of all Distutils evil.""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 15 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 16 | class DistutilsModuleError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 17 | """Unable to load an expected module, or to find an expected class |
| 18 | within some module (in particular, command modules and classes).""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 19 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 20 | class DistutilsClassError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 21 | """Some command class (or possibly distribution class, if anyone |
| 22 | feels a need to subclass Distribution) is found not to be holding |
| 23 | up its end of the bargain, ie. implementing some part of the |
| 24 | "command "interface.""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 25 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 26 | class DistutilsGetoptError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 27 | """The option table provided to 'fancy_getopt()' is bogus.""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 28 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 29 | class DistutilsArgError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 30 | """Raised by fancy_getopt in response to getopt.error -- ie. an |
| 31 | error in the command line usage.""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 32 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 33 | class DistutilsFileError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 34 | """Any problems in the filesystem: expected file not found, etc. |
| 35 | Typically this is for problems that we detect before IOError or |
| 36 | OSError could be raised.""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 37 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 38 | class DistutilsOptionError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 39 | """Syntactic/semantic errors in command options, such as use of |
| 40 | mutually conflicting options, or inconsistent options, |
| 41 | badly-spelled values, etc. No distinction is made between option |
| 42 | values originating in the setup script, the command line, config |
| 43 | files, or what-have-you -- but if we *know* something originated in |
| 44 | the setup script, we'll raise DistutilsSetupError instead.""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 45 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 46 | class DistutilsSetupError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 47 | """For errors that can be definitely blamed on the setup script, |
| 48 | such as invalid keyword arguments to 'setup()'.""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 49 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 50 | class DistutilsPlatformError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 51 | """We don't know how to do something on the current platform (but |
| 52 | we do know how to do it on some platform) -- eg. trying to compile |
| 53 | C files on a platform not supported by a CCompiler subclass.""" |
Greg Ward | 2689e3d | 1999-03-22 14:52:19 +0000 | [diff] [blame] | 54 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 55 | class DistutilsExecError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 56 | """Any problems executing an external program (such as the C |
| 57 | compiler, when compiling C files).""" |
Greg Ward | 8c66b69 | 1999-08-14 23:43:45 +0000 | [diff] [blame] | 58 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 59 | class DistutilsInternalError(DistutilsError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 60 | """Internal inconsistencies or impossibilities (obviously, this |
| 61 | should never be seen if the code is working!).""" |
Greg Ward | ccbb3f0 | 1999-07-10 02:01:44 +0000 | [diff] [blame] | 62 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 63 | class DistutilsTemplateError(DistutilsError): |
Greg Ward | 58bff53 | 2000-07-30 01:03:31 +0000 | [diff] [blame] | 64 | """Syntax error in a file list template.""" |
| 65 | |
Tarek Ziadé | 04fe7c0 | 2009-10-25 23:08:47 +0000 | [diff] [blame] | 66 | class DistutilsByteCompileError(DistutilsError): |
| 67 | """Byte compile error.""" |
Greg Ward | 8c66b69 | 1999-08-14 23:43:45 +0000 | [diff] [blame] | 68 | |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 69 | # Exception classes used by the CCompiler implementation classes |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 70 | class CCompilerError(Exception): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 71 | """Some compile/link operation failed.""" |
Greg Ward | 318a9d7 | 2000-03-31 02:57:31 +0000 | [diff] [blame] | 72 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 73 | class PreprocessError(CCompilerError): |
Greg Ward | 68ff615 | 2000-06-25 02:12:14 +0000 | [diff] [blame] | 74 | """Failure to preprocess one or more C/C++ files.""" |
| 75 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 76 | class CompileError(CCompilerError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 77 | """Failure to compile one or more C/C++ source files.""" |
| 78 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 79 | class LibError(CCompilerError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 80 | """Failure to create a static library from one or more C/C++ object |
| 81 | files.""" |
| 82 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 83 | class LinkError(CCompilerError): |
Greg Ward | c1cb049 | 2000-05-30 02:02:14 +0000 | [diff] [blame] | 84 | """Failure to link one or more C/C++ object files into an executable |
| 85 | or shared library file.""" |
| 86 | |
Tarek Ziadé | 7a8ad4a | 2009-10-28 06:48:27 +0000 | [diff] [blame] | 87 | class UnknownFileError(CCompilerError): |
Greg Ward | 68ff615 | 2000-06-25 02:12:14 +0000 | [diff] [blame] | 88 | """Attempt to process an unknown file type.""" |