summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-12-11 10:31:27 -0500
committerRob Crittenden <rcritten@redhat.com>2008-12-11 10:31:27 -0500
commite41fcf19fe82c41fe024b261d94814e092e6abaf (patch)
tree7157408d9e09fdc3bbf7d87b661fa6f315a79f42 /ipalib/errors.py
parentcfdd272166a2689b2f50e5df65e1304a2040633d (diff)
downloadfreeipa-e41fcf19fe82c41fe024b261d94814e092e6abaf.tar.gz
freeipa-e41fcf19fe82c41fe024b261d94814e092e6abaf.tar.xz
freeipa-e41fcf19fe82c41fe024b261d94814e092e6abaf.zip
Raise an error on bad principals instead of printing one when changing passwords
Fix logic in determining what to do with an incoming principal
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r--ipalib/errors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index 989721be4..724654ff2 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -413,6 +413,10 @@ class InsufficientAccess(GenericError):
"""You do not have permission to perform this task"""
faultCode = 1027
+class InvalidUserPrincipal(GenericError):
+ """Invalid user principal"""
+ faultCode = 1028
+
class FunctionDeprecated(GenericError):
"""Raised by a deprecated function"""
faultCode = 2000