diff options
author | Greg Ward <gward@python.net> | 2000-07-30 01:03:31 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-07-30 01:03:31 (GMT) |
commit | 58bff53320f41423cf3585dcf45fd24ce5eaf248 (patch) | |
tree | 2fa3aee5658256d8f16a70d3f8d1f55241e12eb4 /Lib/distutils/errors.py | |
parent | c019e2c7a8db8e84033d1c4121b1e63abb172c7d (diff) | |
download | cpython-58bff53320f41423cf3585dcf45fd24ce5eaf248.zip cpython-58bff53320f41423cf3585dcf45fd24ce5eaf248.tar.gz cpython-58bff53320f41423cf3585dcf45fd24ce5eaf248.tar.bz2 |
Added DistutilsTemplateError.
Diffstat (limited to 'Lib/distutils/errors.py')
-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): |