summaryrefslogtreecommitdiffstats
path: root/nova/exception.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-12-19 02:11:37 +0000
committerGerrit Code Review <review@openstack.org>2012-12-19 02:11:37 +0000
commitcb9e57321111e1ff4a0e91abcb46c38f107d4bab (patch)
treed59a853066ec46996ef4a56331ccbeb347c592ea /nova/exception.py
parentf7b11a5921dad27c019460af4a03f2b4ac92de8a (diff)
parent6ab2790e85015edf28721000633a6b8970ccf946 (diff)
downloadnova-cb9e57321111e1ff4a0e91abcb46c38f107d4bab.tar.gz
nova-cb9e57321111e1ff4a0e91abcb46c38f107d4bab.tar.xz
nova-cb9e57321111e1ff4a0e91abcb46c38f107d4bab.zip
Merge "Remove the WillNotSchedule exception."
Diffstat (limited to 'nova/exception.py')
-rw-r--r--nova/exception.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/nova/exception.py b/nova/exception.py
index 10349f386..fa1a3ac7f 100644
--- a/nova/exception.py
+++ b/nova/exception.py
@@ -895,10 +895,6 @@ class NoValidHost(NovaException):
message = _("No valid host was found. %(reason)s")
-class WillNotSchedule(NovaException):
- message = _("Host %(host)s is not up or doesn't exist.")
-
-
class QuotaError(NovaException):
message = _("Quota exceeded") + ": code=%(code)s"
code = 413