Code

* Add support for actions to XMLRPC interface.
[roundup.git] / roundup / exceptions.py
index a9ba2cf8ebd78d028ceda744a416598400191464..629516d3a0a6ed42c9c2e3d1671304a6c06fd80d 100644 (file)
@@ -1,11 +1,16 @@
-#$Id: exceptions.py,v 1.1 2004-03-26 00:44:11 richard Exp $
-'''Exceptions for use across all Roundup components.
-'''
+"""Exceptions for use across all Roundup components.
+"""
 
 __docformat__ = 'restructuredtext'
 
+class LoginError(Exception):
+    pass
+
+class Unauthorised(Exception):
+    pass
+
 class Reject(Exception):
-    '''An auditor may raise this exception when the current create or set
+    """An auditor may raise this exception when the current create or set
     operation should be stopped.
 
     It is up to the specific interface invoking the create or set to
@@ -13,7 +18,7 @@ class Reject(Exception):
 
     - mailgw will trap and ignore Reject for file attachments and messages
     - cgi will trap and present the exception in a nice format
-    '''
+    """
     pass
 
 class UsageError(ValueError):