]> granicus.if.org Git - python/commitdiff
Added PreprocessError and UnknownFileError (both used by CCompiler).
authorGreg Ward <gward@python.net>
Sun, 25 Jun 2000 02:12:14 +0000 (02:12 +0000)
committerGreg Ward <gward@python.net>
Sun, 25 Jun 2000 02:12:14 +0000 (02:12 +0000)
Lib/distutils/errors.py

index 161705633c0ed95e28d5183debe70e8f41d3bed7..a718f01a40cb24b69a59a317bf84fba7e8b86219 100644 (file)
@@ -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."""