# Authors: # Jason Gerard DeRose # # Copyright (C) 2008 Red Hat # see file 'COPYING' for use and warranty inmsgion # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; version 2 only # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ All custom errors raised by `ipalib` package. """ class IPATypeError(TypeError): """ A TypeError subclass with with a standard message. Also has two custom attributes: ``type`` - The type being tested against. ``value`` - The offending value that caused the exception. There is no edict that all TypeError should be raised with IPATypeError, but when it fits, use it... it makes the unit tests faster to write and the debugging easier to read. """ format = 'need a %r; got %r' def __init__(self, type_, value): assert type(value) is not type_, '%r is a %r' % (value, type_) self.type = type_ self.value = value TypeError.__init__(self, self.format % (self.type, self.value)) class IPAError(Exception): """ Use this base class for your custom IPA errors unless there is a specific reason to subclass from AttributeError, KeyError, etc. """ msg = None def __init__(self, *args, **kw): self.args = args self.kw = kw def __str__(self): """ Returns the string representation of this exception. """ if self.msg is None: if len(self.args) == 1: return unicode(self.args[0]) return unicode(self.args) if len(self.args) > 0: return self.msg % self.args return self.msg % self.kw class ValidationError(IPAError): msg = 'invalid %r value %r: %s' def __init__(self, name, value, error): self.name = name self.value = value self.error = error IPAError.__init__(self, name, value, error) class NormalizationError(ValidationError): def __init__(self, name, value, type): self.type = type ValidationError.__init__(self, name, value, 'not %r' % type ) class RuleError(ValidationError): """ Raised when a required option was not provided. """ # FIXME: `rule` should really be after `error` def __init__(self, name, value, rule, error): self.rule = rule ValidationError.__init__(self, name, value, error) class RequirementError(ValidationError): """ Raised when a required option was not provided. """ def __init__(self, name): ValidationError.__init__(self, name, None, 'missing required value' ) class SetError(IPAError): msg = 'setting %r, but NameSpace does not allow attribute setting' class RegistrationError(IPAError): """ Base class for errors that occur during plugin registration. """ class NameSpaceError(RegistrationError): msg = 'name %r does not re.match %r' class SubclassError(RegistrationError): """ Raised when registering a plugin that is not a subclass of one of the allowed bases. """ msg = 'plugin %r not subclass of any base in %r' def __init__(self, cls, allowed): self.cls = cls self.allowed = allowed def __str__(self): return self.msg % (self.cls, self.allowed) class DuplicateError(RegistrationError): """ Raised when registering a plugin whose exact class has already been registered. """ msg = '%r at %d was already registered' def __init__(self, cls): self.cls = cls def __str__(self): return self.msg % (self.cls, id(self.cls)) class OverrideError(RegistrationError): """ Raised when override=False yet registering a plugin that overrides an existing plugin in the same namespace. """ msg = 'unexpected override of %s.%s with %r (use override=True if intended)' def __init__(self, base, cls): self.base = base self.cls = cls def __str__(self): return self.msg % (self.base.__name__, self.cls.__name__, self.cls) class MissingOverrideError(RegistrationError): """ Raised when override=True yet no preexisting plugin with the same name and base has been registered. """ msg = '%s.%s has not been registered, cannot override with %r' def __init__(self, base, cls): self.base = base self.cls = cls def __str__(self): return self.msg % (self.base.__name__, self.cls.__name__, self.cls) class TwiceSetError(IPAError): msg = '%s.%s cannot be set twice'