summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
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'