summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r--ipalib/errors.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index 49d6343a4..8e119837e 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -1110,6 +1110,21 @@ class ManagedPolicyError(ExecutionError):
errno = 4021
format = _('A managed group cannot have a password policy.')
+class ManagedGroupExistsError(ExecutionError):
+ """
+ **4024** Raised when adding a user and its managed group exists
+
+ For example:
+
+ >>> raise ManagedGroupExistsError(group=u'engineering')
+ Traceback (most recent call last):
+ ...
+ ManagedGroupExistsError: Unable to create private group. A group 'engineering' already exists.'
+ """
+
+ errno = 4024
+ format = _('Unable to create private group. Group \'%(group)s\' already exists.')
+
class BuiltinError(ExecutionError):
"""
**4100** Base class for builtin execution errors (*4100 - 4199*).