Code

Fix matching of incoming email addresses to the alternate_addresses
[roundup.git] / roundup / exceptions.py
index 27cc1ef1935d8623b9fe8439a2fb1e5687080106..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,10 @@ 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):
     pass
 
 # vim: set filetype=python ts=4 sw=4 et si