diff options
Diffstat (limited to 'ipalib/errors2.py')
-rw-r--r-- | ipalib/errors2.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ipalib/errors2.py b/ipalib/errors2.py index 91b23115..4a6a517d 100644 --- a/ipalib/errors2.py +++ b/ipalib/errors2.py @@ -410,6 +410,23 @@ class KerberosError(AuthenticationError): errno = 1100 +class ServiceError(KerberosError): + """ + **1101** Raised when service is not found in Kerberos DB. + + For example: + + >>> raise ServiceError(service='HTTP@localhost') + Traceback (most recent call last): + ... + ServiceError: Service 'HTTP@localhost' not found in Kerberos database + + """ + + errno = 1101 + format = _('Service %(service)r not found in Kerberos database') + + ############################################################################## # 2000 - 2999: Authorization errors |