diff options
| author | Ilya Alekseyev <ilyaalekseyev@acm.org> | 2011-06-28 00:23:19 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-06-28 00:23:19 +0000 |
| commit | f192f6f0d3f28f0d629a2a97ef6faec85ba24b2e (patch) | |
| tree | 2f1ec4e1d4eff32fbc80ecd2f0aec0835c9fb331 /nova/exception.py | |
| parent | 2cc5d8916b8827faba416a0e317b106afa453ae7 (diff) | |
| parent | 7c4f83bc8f119ff4486f913bd3e5ef7eff5b338f (diff) | |
| download | nova-f192f6f0d3f28f0d629a2a97ef6faec85ba24b2e.tar.gz nova-f192f6f0d3f28f0d629a2a97ef6faec85ba24b2e.tar.xz nova-f192f6f0d3f28f0d629a2a97ef6faec85ba24b2e.zip | |
Added floating IP support in OS API
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 f3a452228..8a63a79f2 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -361,6 +361,10 @@ class NoFixedIpsFoundForInstance(NotFound): class FloatingIpNotFound(NotFound): + message = _("Floating ip %(floating_ip)s not found") + + +class FloatingIpNotFoundForFixedAddress(NotFound): message = _("Floating ip not found for fixed address %(fixed_ip)s.") |
