diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-03 22:41:53 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-03 22:41:53 +0000 |
commit | 490eaee8a9f35975f7db5739a882894e10fb79a7 (patch) | |
tree | 7dcd7116a94112b15a0518a32b6695aaf77355a9 /ipalib/errors.py | |
parent | 296d59d27a33bedff00e126439730558b4cc93d3 (diff) | |
download | freeipa.git-490eaee8a9f35975f7db5739a882894e10fb79a7.tar.gz freeipa.git-490eaee8a9f35975f7db5739a882894e10fb79a7.tar.xz freeipa.git-490eaee8a9f35975f7db5739a882894e10fb79a7.zip |
248: Removed depreciated SetError and TwiceSetError exceptions
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r-- | ipalib/errors.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py index fc1b2c49..5e8af9d4 100644 --- a/ipalib/errors.py +++ b/ipalib/errors.py @@ -160,10 +160,6 @@ class RequirementError(ValidationError): ValidationError.__init__(self, name, None, 'Required') -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. @@ -231,7 +227,3 @@ class MissingOverrideError(RegistrationError): def __str__(self): return self.msg % (self.base.__name__, self.cls.__name__, self.cls) - - -class TwiceSetError(IPAError): - msg = '%s.%s cannot be set twice' |