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."""
"""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."""