1 # vim: set fileencoding=utf-8 ai et sts=4 sw=4 tw=0:
2 # -*- coding: <utf-8> -*-
3 # Userdir-LDAP exception classes
4 # © 2009 Stephen Gran <sgran@debian.org>
5 # © 2009 Mark Hymers <mhy@debian.org>
7 These classes implement the necessary exceptions in the userdir-ldap namespace
11 class UDError(Exception):
13 Base class for exceptions in ud-ldap.
15 def __init__(self, message):
16 Exception.__init__(self)
17 self.message = message
20 return "%s: %s" % (self._name_, self.message)
27 "UDPasswdError": """Exception raised for authentication errors.""",
28 "UDFormatError": """Exception raised for data format errors.""",
29 "UDExecuteError": """Exception raised for subprocess execution errors.""",
30 "UDNotAllowedError": """Exception raised for attempts to modify off-limits or disabled entries.""",
31 "UDEmptyList": """Exception raised for empty list objects.""",
32 "UDLoadFail": """Exception raised for LDAP lookup failures.""",
36 def construct_udld_exception(name, description):
37 """Generator function for userdir-ldap exceptions"""
40 """meta class for user-ldap exceptions"""
43 setattr(Error, "__name__", name)
44 setattr(Error, "_name_", name)
48 for key in UDERRORS.keys():
49 globals()[key] = construct_udld_exception(key, UDERRORS[key])