summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/compute/servers.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/nova/api/openstack/compute/servers.py b/nova/api/openstack/compute/servers.py
index 0816e0a61..cec7cbd60 100644
--- a/nova/api/openstack/compute/servers.py
+++ b/nova/api/openstack/compute/servers.py
@@ -925,7 +925,6 @@ class Controller(wsgi.Controller):
msg = "UnicodeError: %s" % unicode(error)
raise exc.HTTPBadRequest(explanation=msg)
except (exception.ImageNotActive,
- exception.ImageTooLarge,
exception.InstanceTypeDiskTooSmall,
exception.InstanceTypeMemoryTooSmall,
exception.InstanceTypeNotFound,
@@ -1286,7 +1285,6 @@ class Controller(wsgi.Controller):
msg = _("Cannot find image for rebuild")
raise exc.HTTPBadRequest(explanation=msg)
except (exception.ImageNotActive,
- exception.ImageTooLarge,
exception.InstanceTypeDiskTooSmall,
exception.InstanceTypeMemoryTooSmall,
exception.InvalidMetadata) as error: