summaryrefslogtreecommitdiffstats
path: root/nova/exception.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-03-02 04:37:59 +0000
committerGerrit Code Review <review@openstack.org>2013-03-02 04:37:59 +0000
commitb464021d66fe67ddc32b9d32c9d8850ff416c233 (patch)
treebad7d00537e74b771ade31f68b3535b31b1bbc43 /nova/exception.py
parent4588140f5a46337af6dc3d3dc2e1caa53097b02e (diff)
parentf225b1d20dad1464960dc01243f38924faf4cba9 (diff)
downloadnova-b464021d66fe67ddc32b9d32c9d8850ff416c233.tar.gz
nova-b464021d66fe67ddc32b9d32c9d8850ff416c233.tar.xz
nova-b464021d66fe67ddc32b9d32c9d8850ff416c233.zip
Merge "instance_info_cache_update creates wrongly"
Diffstat (limited to 'nova/exception.py')
-rw-r--r--nova/exception.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py
index a821e9c6b..6d931588d 100644
--- a/nova/exception.py
+++ b/nova/exception.py
@@ -1064,6 +1064,11 @@ class InstanceNotFound(NotFound):
message = _("Instance %(instance_id)s could not be found.")
+class InstanceInfoCacheNotFound(NotFound):
+ message = _("Info cache for instance %(instance_uuid)s could not be "
+ "found.")
+
+
class NodeNotFound(NotFound):
message = _("Node %(node_id)s could not be found.")