summaryrefslogtreecommitdiffstats
path: root/nova/exception.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-03-05 20:05:08 +0000
committerGerrit Code Review <review@openstack.org>2012-03-05 20:05:08 +0000
commit5f9cee0c9c95b61d548730e7918e5c623301b3b1 (patch)
treeedeb87376001bd65e07eecb595c17d0f6ace4e58 /nova/exception.py
parent84dc739b289a81848134184f8bfadfe69835feee (diff)
parentc4a2e17dcfbd7b6434a7dfae3c7a3e5f30a3fc87 (diff)
downloadnova-5f9cee0c9c95b61d548730e7918e5c623301b3b1.tar.gz
nova-5f9cee0c9c95b61d548730e7918e5c623301b3b1.tar.xz
nova-5f9cee0c9c95b61d548730e7918e5c623301b3b1.zip
Merge "Retry download_vhd with different glance host each time"
Diffstat (limited to 'nova/exception.py')
-rw-r--r--nova/exception.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/nova/exception.py b/nova/exception.py
index f485e5ddf..dbd46d3a2 100644
--- a/nova/exception.py
+++ b/nova/exception.py
@@ -1019,3 +1019,7 @@ class InstanceNotFound(NotFound):
class InvalidInstanceIDMalformed(Invalid):
message = _("Invalid id: %(val)s (expecting \"i-...\").")
+
+
+class CouldNotFetchImage(NovaException):
+ message = _("Could not fetch image %(image)s")