summaryrefslogtreecommitdiff
path: root/nova/api/openstack/compute/deferred_delete.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/api/openstack/compute/deferred_delete.py')
-rw-r--r--nova/api/openstack/compute/deferred_delete.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/compute/deferred_delete.py b/nova/api/openstack/compute/deferred_delete.py
index 55879267ff..b3f461cca4 100644
--- a/nova/api/openstack/compute/deferred_delete.py
+++ b/nova/api/openstack/compute/deferred_delete.py
@@ -40,7 +40,7 @@ class DeferredDeleteController(wsgi.Controller):
target={'project_id': instance.project_id})
try:
self.compute_api.restore(context, instance)
- except exception.QuotaError as error:
+ except exception.OverQuota as error:
raise webob.exc.HTTPForbidden(explanation=error.format_message())
except exception.InstanceInvalidState as state_error:
common.raise_http_conflict_for_instance_invalid_state(state_error,