summaryrefslogtreecommitdiffstats
path: root/ipalib/messages.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/messages.py')
-rw-r--r--ipalib/messages.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/ipalib/messages.py b/ipalib/messages.py
index 078e13f59..e43584b10 100644
--- a/ipalib/messages.py
+++ b/ipalib/messages.py
@@ -331,6 +331,16 @@ class ExternalCommandOutput(PublicMessage):
format = _("%(line)s")
+class SearchResultTruncated(PublicMessage):
+ """
+ **13017** Results of LDAP search has been truncated
+ """
+
+ errno = 13017
+ type = "warning"
+ format = _("Search result has been truncated to configured search limit.")
+
+
def iter_messages(variables, base):
"""Return a tuple with all subclasses
"""