summaryrefslogtreecommitdiff
path: root/heatclient/exc.py
diff options
context:
space:
mode:
authorrabi <ramishra@redhat.com>2016-11-04 13:33:12 +0530
committerrabi <ramishra@redhat.com>2016-11-12 19:15:40 +0530
commitb25baa9108bb37e0ece20895d464acf00ab2706c (patch)
treeb1699411a3c4f5933a364ed03390c1fe47df4158 /heatclient/exc.py
parentea03fa2254a471edef0a655a63c42d7039428323 (diff)
downloadpython-heatclient-b25baa9108bb37e0ece20895d464acf00ab2706c.tar.gz
Move required modules from oslo-incubator
Move the required module to heatclient/common. - heatclient/openstack/common/apiclient/base.py It also moves some required functions and exceptions from heatclient/openstack/common/cliutils.py and heatclient/openstack/common/exceptions.py. Change-Id: I68704c7fab9417492d8390ad05a9797f78d46907
Diffstat (limited to 'heatclient/exc.py')
-rw-r--r--heatclient/exc.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/heatclient/exc.py b/heatclient/exc.py
index b5de2cc..cc640da 100644
--- a/heatclient/exc.py
+++ b/heatclient/exc.py
@@ -122,6 +122,10 @@ class HTTPNotFound(NotFound):
pass
+class NoUniqueMatch(HTTPException):
+ pass
+
+
class HTTPMethodNotAllowed(HTTPException):
code = 405