From: Greg Ward Date: Sun, 25 Jun 2000 02:12:14 +0000 (+0000) Subject: Added PreprocessError and UnknownFileError (both used by CCompiler). X-Git-Tag: v2.0b1~1419 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=68ff615c7986526827b6d7fa8e2eb8650c17478a;p=python Added PreprocessError and UnknownFileError (both used by CCompiler). --- diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py index 161705633c..a718f01a40 100644 --- a/Lib/distutils/errors.py +++ b/Lib/distutils/errors.py @@ -78,6 +78,9 @@ class DistutilsInternalError (DistutilsError): class CCompilerError (Exception): """Some compile/link operation failed.""" +class PreprocessError (CCompilerError): + """Failure to preprocess one or more C/C++ files.""" + class CompileError (CCompilerError): """Failure to compile one or more C/C++ source files.""" @@ -89,4 +92,5 @@ class LinkError (CCompilerError): """Failure to link one or more C/C++ object files into an executable or shared library file.""" - +class UnknownFileError (CCompilerError): + """Attempt to process an unknown file type."""