From b25baa9108bb37e0ece20895d464acf00ab2706c Mon Sep 17 00:00:00 2001 From: rabi Date: Fri, 4 Nov 2016 13:33:12 +0530 Subject: 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 --- heatclient/exc.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'heatclient/exc.py') 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 -- cgit v1.2.1