summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-09-03 22:41:53 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-09-03 22:41:53 +0000
commit490eaee8a9f35975f7db5739a882894e10fb79a7 (patch)
tree7dcd7116a94112b15a0518a32b6695aaf77355a9 /ipalib/errors.py
parent296d59d27a33bedff00e126439730558b4cc93d3 (diff)
downloadfreeipa-490eaee8a9f35975f7db5739a882894e10fb79a7.tar.gz
freeipa-490eaee8a9f35975f7db5739a882894e10fb79a7.tar.xz
freeipa-490eaee8a9f35975f7db5739a882894e10fb79a7.zip
248: Removed depreciated SetError and TwiceSetError exceptions
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r--ipalib/errors.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index fc1b2c499..5e8af9d4a 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'