diff options
| author | Trey Morris <trey.morris@rackspace.com> | 2011-06-20 11:56:15 -0500 |
|---|---|---|
| committer | Trey Morris <trey.morris@rackspace.com> | 2011-06-20 11:56:15 -0500 |
| commit | 0502a2b35fb1a4424e7249cb9f39d7fc98bf37b5 (patch) | |
| tree | dec6563c259d0a069077846177dc47b4a2b6f44e /nova/exception.py | |
| parent | 9873968029e19e9846e04951f841d02c27c9d6ae (diff) | |
| download | nova-0502a2b35fb1a4424e7249cb9f39d7fc98bf37b5.tar.gz nova-0502a2b35fb1a4424e7249cb9f39d7fc98bf37b5.tar.xz nova-0502a2b35fb1a4424e7249cb9f39d7fc98bf37b5.zip | |
updated the exceptions around virtual interface creation, updated flatDHCP manager comment
Diffstat (limited to 'nova/exception.py')
| -rw-r--r-- | nova/exception.py | 4 |
1 files changed, 4 insertions, 0 deletions
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") |
