From: Steven Hardy Date: Tue, 19 Feb 2013 18:34:35 +0000 (+0000) Subject: heat common : Add ResourceUpdateFailed exception type X-Git-Tag: 2014.1~881^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=5be6ce6b50825e33ae84a2bdb7f62d103f0ccd7a;p=openstack-build%2Fheat-build.git heat common : Add ResourceUpdateFailed exception type blueprint update-rollback Change-Id: I357f9f5b7db727f968ab385c9da8042e5dce7154 --- diff --git a/heat/common/exception.py b/heat/common/exception.py index 16b012d0..b157f470 100644 --- a/heat/common/exception.py +++ b/heat/common/exception.py @@ -226,6 +226,10 @@ class ResourceNotAvailable(OpenstackException): message = _("The Resource (%(resource_name)s) is not available.") +class ResourceUpdateFailed(OpenstackException): + message = _("Resource (%(resource_name)s) update failed") + + class PhysicalResourceNotFound(OpenstackException): message = _("The Resource (%(resource_id)s) could not be found.")