summaryrefslogtreecommitdiff
path: root/keystoneclient/exceptions.py
diff options
context:
space:
mode:
authorKen'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>2013-01-17 18:11:27 +0900
committerKen'ichi Ohmichi <oomichi@mxs.nes.nec.co.jp>2013-01-17 18:11:27 +0900
commit935166506277d3ee60eabdec5b0129f70c446ee5 (patch)
tree59c19031e11cb7c929a01be61b59e91115bd75db /keystoneclient/exceptions.py
parent3dfb8437fc9135465f2b66b2c420bf20899fcf10 (diff)
downloadpython-keystoneclient-935166506277d3ee60eabdec5b0129f70c446ee5.tar.gz
Add name arguments to keystone command.
This patch adds name arguments to the following subcommands: * role-delete * role-get * service-delete * service-get * tenant-delete * tenant-get * tenant-update * user-delete * user-get * user-password-update * user-role-add * user-role-list * user-role-remove * user-update Fixes bug 1100648 Change-Id: I73c08c0ba553a72ec57ff3a684a00be4ef1294a6
Diffstat (limited to 'keystoneclient/exceptions.py')
-rw-r--r--keystoneclient/exceptions.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/keystoneclient/exceptions.py b/keystoneclient/exceptions.py
index 213f078..10c85ba 100644
--- a/keystoneclient/exceptions.py
+++ b/keystoneclient/exceptions.py
@@ -33,6 +33,11 @@ class EmptyCatalog(Exception):
pass
+class NoUniqueMatch(Exception):
+ """Unable to find unique resource"""
+ pass
+
+
class ClientException(Exception):
"""
The base exception class for all exceptions this library raises.