From 58bff53320f41423cf3585dcf45fd24ce5eaf248 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sun, 30 Jul 2000 01:03:31 +0000 Subject: [PATCH] Added DistutilsTemplateError. --- Lib/distutils/errors.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py index a718f01a40c..bec34645112 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):