~0x44/nova/bug838466

« back to all changes in this revision

Viewing changes to nova/exception.py

  • Committer: Tarmac
  • Author(s): Ilya Alekseyev, Eldar Nugaev, Ilya Alekseyev, Eldar Nugaev, Kirill Shileev
  • Date: 2011-06-28 00:23:19 UTC
  • mfrom: (1184.4.21 floating-os-api)
  • Revision ID: tarmac-20110628002319-xdtl9r3hn9kg535l
Added floating IP support in OS API

Show diffs side-by-side

added added

removed removed

Lines of Context:
361
361
 
362
362
 
363
363
class FloatingIpNotFound(NotFound):
 
364
    message = _("Floating ip %(floating_ip)s not found")
 
365
 
 
366
 
 
367
class FloatingIpNotFoundForFixedAddress(NotFound):
364
368
    message = _("Floating ip not found for fixed address %(fixed_ip)s.")
365
369
 
366
370