From ddadc54f640e838d2a29744df27e2d21039b5c10 Mon Sep 17 00:00:00 2001 From: Chris Behrens Date: Thu, 1 Nov 2012 20:49:43 +0000 Subject: Cells: Re-add DB model and calls Implements blueprint nova-compute-cells Change-Id: I5e254988f3dd17cd1147b6c2d0372e3bb6fe6937 --- nova/exception.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'nova/exception.py') diff --git a/nova/exception.py b/nova/exception.py index 54b3a17cc..2ba11ac32 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -753,6 +753,10 @@ class FlavorAccessNotFound(NotFound): "%(project_id) combination.") +class CellNotFound(NotFound): + message = _("Cell %(cell_id)s could not be found.") + + class SchedulerHostFilterNotFound(NotFound): message = _("Scheduler Host Filter %(filter_name)s could not be found.") -- cgit