From: KIYOHIRO ADACHI Date: Thu, 13 Feb 2014 05:10:21 +0000 (+0900) Subject: Remove unused exception X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=eba04582cb9199529d286f189f6613c218dd2840;p=openstack-build%2Fcinder-build.git Remove unused exception o class WillNotSchedule(CinderException): This exception was removed in the following commit. commit cea7fe21cecfcd28ede3ba411b8ab8b36c9a7c15 Author: Zhiteng Huang Date: Thu Jan 2 15:44:30 2014 +0800 Drop Chance/SimpleScheduler Implementation Change-Id: I8f5f8e6c5c844a67607dae9fb63524aef7069133 --- diff --git a/cinder/exception.py b/cinder/exception.py index 6e7c4f10a..eca71577d 100644 --- a/cinder/exception.py +++ b/cinder/exception.py @@ -394,10 +394,6 @@ class NoMoreTargets(CinderException): pass -class WillNotSchedule(CinderException): - message = _("Host %(host)s is not up or doesn't exist.") - - class QuotaError(CinderException): message = _("Quota exceeded: code=%(code)s") code = 413