From 5be6ce6b50825e33ae84a2bdb7f62d103f0ccd7a Mon Sep 17 00:00:00 2001 From: Steven Hardy Date: Tue, 19 Feb 2013 18:34:35 +0000 Subject: [PATCH] heat common : Add ResourceUpdateFailed exception type blueprint update-rollback Change-Id: I357f9f5b7db727f968ab385c9da8042e5dce7154 --- heat/common/exception.py | 4 ++++ 1 file changed, 4 insertions(+) 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.") -- 2.45.2