From 69a2c07396f94ec0099c24089dd452b30cc06052 Mon Sep 17 00:00:00 2001 From: Jacob Mason Date: Wed, 4 Aug 2010 16:06:10 -0500 Subject: added delete_comment method --- sphinx/websupport/errors.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'sphinx/websupport/errors.py') 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 -- cgit v1.2.1