diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-03-24 12:04:26 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2012-03-24 12:04:26 -0400 |
commit | 316c1ab2f3edc8807cf26e0d4718453cd0154872 (patch) | |
tree | f63066b77304a67863e022686631be9086c0fdfb /mako/exceptions.py | |
parent | 556151f5c2f5e491cb97ca7ffdbdb565b3145ccc (diff) | |
download | external_python_mako-316c1ab2f3edc8807cf26e0d4718453cd0154872.tar.gz external_python_mako-316c1ab2f3edc8807cf26e0d4718453cd0154872.tar.bz2 external_python_mako-316c1ab2f3edc8807cf26e0d4718453cd0154872.zip |
- apply the #125 patch
- changelog
Diffstat (limited to 'mako/exceptions.py')
-rw-r--r-- | mako/exceptions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mako/exceptions.py b/mako/exceptions.py index c9e04ea..abb866e 100644 --- a/mako/exceptions.py +++ b/mako/exceptions.py @@ -41,6 +41,9 @@ class SyntaxException(MakoException): class UnsupportedError(MakoException): """raised when a retired feature is used.""" +class NameConflictError(MakoException): + """raised when a reserved word is used inappropriately""" + class TemplateLookupException(MakoException): pass |