]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
heat common : Add ResourceUpdateFailed exception type
authorSteven Hardy <shardy@redhat.com>
Tue, 19 Feb 2013 18:34:35 +0000 (18:34 +0000)
committerSteven Hardy <shardy@redhat.com>
Wed, 20 Feb 2013 15:40:13 +0000 (15:40 +0000)
blueprint update-rollback

Change-Id: I357f9f5b7db727f968ab385c9da8042e5dce7154

heat/common/exception.py

index 16b012d0d1c1079df0c815e87cd04aadacdbb348..b157f470951b4729754ac91a256dafc38ba51a9c 100644 (file)
@@ -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.")