summaryrefslogtreecommitdiffstats
path: root/nova/exception.py
diff options
context:
space:
mode:
authorJohannes Erdfelt <johannes.erdfelt@rackspace.com>2012-03-01 18:49:44 +0000
committerJohannes Erdfelt <johannes.erdfelt@rackspace.com>2012-03-02 19:14:13 +0000
commitc4a2e17dcfbd7b6434a7dfae3c7a3e5f30a3fc87 (patch)
tree02618692c7d92734f14776f626a5f941c4316c94 /nova/exception.py
parent8a530832c599f8866e98947976d74a5332d877af (diff)
downloadnova-c4a2e17dcfbd7b6434a7dfae3c7a3e5f30a3fc87.tar.gz
nova-c4a2e17dcfbd7b6434a7dfae3c7a3e5f30a3fc87.tar.xz
nova-c4a2e17dcfbd7b6434a7dfae3c7a3e5f30a3fc87.zip
Retry download_vhd with different glance host each time
Fixes bug 944096 Change-Id: I33aa3774ba7f266e85f09c6c569fdd0f895478b4
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 43d16642f..c781170b7 100644
--- a/nova/exception.py
+++ b/nova/exception.py
@@ -1015,3 +1015,7 @@ class InstanceNotFound(NotFound):
class InvalidInstanceIDMalformed(Invalid):
message = _("Invalid id: %(val)s (expecting \"i-...\").")
+
+
+class CouldNotFetchImage(NovaException):
+ message = _("Could not fetch image %(image)s")