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, 8 insertions, 0 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index d94d2b070..d1d39a378 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -746,6 +746,14 @@ class PasswordMismatch(InvocationError):
errno = 3011
format = _('Passwords do not match')
+class NotImplementedError(InvocationError):
+ """
+ **3012** Raise when a function hasn't been implemented.
+ """
+
+ errno = 3012
+ format = _('Command not implemented')
+
##############################################################################
# 4000 - 4999: Execution errors