X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=blobdiff_plain;f=userdir_exceptions.py;h=ec879a934efcdbbfb9c2c69fb08ad1d3d6e6bcc1;hp=a9d9d8eda92f81ac269148fda66687ad77f55460;hb=HEAD;hpb=0ff5a9417fdcaa2979cb773548de6213a0714d49 diff --git a/userdir_exceptions.py b/userdir_exceptions.py index a9d9d8e..ec879a9 100644 --- a/userdir_exceptions.py +++ b/userdir_exceptions.py @@ -1,12 +1,13 @@ # vim: set fileencoding=utf-8 ai et sts=4 sw=4 tw=0: -# # -*- coding: -*- -## Userdir-LDAP exception classes -## © 2009 Stephen Gran -## © 2009 Mark Hymers +# -*- coding: -*- +# Userdir-LDAP exception classes +# © 2009 Stephen Gran +# © 2009 Mark Hymers """ These classes implement the necessary exceptions in the userdir-ldap namespace """ + class UDError(Exception): """ Base class for exceptions in ud-ldap. @@ -14,12 +15,14 @@ class UDError(Exception): def __init__(self, message): Exception.__init__(self) self.message = message - + def __str__(self): return "%s: %s" % (self._name_, self.message) + __all__ = ['UDError'] + UDERRORS = { "UDPasswdError": """Exception raised for authentication errors.""", "UDFormatError": """Exception raised for data format errors.""", @@ -29,6 +32,7 @@ UDERRORS = { "UDLoadFail": """Exception raised for LDAP lookup failures.""", } + def construct_udld_exception(name, description): """Generator function for userdir-ldap exceptions""" @@ -40,7 +44,7 @@ def construct_udld_exception(name, description): setattr(Error, "_name_", name) return Error + for key in UDERRORS.keys(): globals()[key] = construct_udld_exception(key, UDERRORS[key]) __all__ += [key] -