From 0502a2b35fb1a4424e7249cb9f39d7fc98bf37b5 Mon Sep 17 00:00:00 2001 From: Trey Morris Date: Mon, 20 Jun 2011 11:56:15 -0500 Subject: updated the exceptions around virtual interface creation, updated flatDHCP manager comment --- 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 a4c1b2d30..8e67de965 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -118,6 +118,10 @@ class NovaException(Exception): return self._error_string +class VirtualInterfaceCreateException(NovaException): + message = _("Virtual Interface creation failed") + + class VirtualInterfaceMacAddressException(NovaException): message = _("5 attempts to create virtual interface" "with unique mac address failed") -- cgit