diff options
author | Jacob Mason <jacoblmason@gmail.com> | 2010-08-04 16:06:10 -0500 |
---|---|---|
committer | Jacob Mason <jacoblmason@gmail.com> | 2010-08-04 16:06:10 -0500 |
commit | 69a2c07396f94ec0099c24089dd452b30cc06052 (patch) | |
tree | 444706a703da238c7a2c55deff7c931a956a5514 /sphinx/websupport/errors.py | |
parent | f58fe6eed69a40c962bac57e672ec0d41b4a714c (diff) | |
download | sphinx-git-69a2c07396f94ec0099c24089dd452b30cc06052.tar.gz |
added delete_comment method
Diffstat (limited to 'sphinx/websupport/errors.py')
-rw-r--r-- | sphinx/websupport/errors.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sphinx/websupport/errors.py b/sphinx/websupport/errors.py index b1c47915e..fbb75a93d 100644 --- a/sphinx/websupport/errors.py +++ b/sphinx/websupport/errors.py @@ -9,7 +9,8 @@ :license: BSD, see LICENSE for details. """ -__all__ = ['DocumentNotFoundError', 'SrcdirNotSpecifiedError'] +__all__ = ['DocumentNotFoundError', 'SrcdirNotSpecifiedError', + 'UserNotAuthorizedError'] class DocumentNotFoundError(Exception): pass @@ -17,3 +18,7 @@ class DocumentNotFoundError(Exception): class SrcdirNotSpecifiedError(Exception): pass + + +class UserNotAuthorizedError(Exception): + pass |