diff options
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/errors.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py index a718f01..bec3464 100644 --- a/Lib/distutils/errors.py +++ b/Lib/distutils/errors.py @@ -73,6 +73,9 @@ class DistutilsInternalError (DistutilsError): should never be seen if the code is working!).""" pass +class DistutilsTemplateError (DistutilsError): + """Syntax error in a file list template.""" + # Exception classes used by the CCompiler implementation classes class CCompilerError (Exception): |