~0x44/nova/extdoc

« back to all changes in this revision

Viewing changes to nova/exception.py

  • Committer: vladimir.p
  • Date: 2011-08-26 01:38:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1502.
  • Revision ID: vladimir@zadarastorage.com-20110826013835-sk22ic51cwbt0xa5
VSA code redesign. Drive types completely replaced by Volume types

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
                "key %(extra_specs_key)s.")
366
366
 
367
367
 
368
 
class VolumeNotFoundForVsa(VolumeNotFound):
369
 
    message = _("Volume not found for vsa %(vsa_id)s.")
370
 
 
371
 
 
372
368
class SnapshotNotFound(NotFound):
373
369
    message = _("Snapshot %(snapshot_id)s could not be found.")
374
370
 
799
795
    message = _("Virtual Storage Array %(name)s could not be found.")
800
796
 
801
797
 
802
 
class VirtualDiskTypeNotFound(NotFound):
803
 
    message = _("Drive Type %(id)d could not be found.")
804
 
 
805
 
 
806
 
class VirtualDiskTypeNotFoundByName(NotFound):
807
 
    message = _("Drive Type %(name)s could not be found.")
808
 
 
809
 
 
810
798
class CannotResizeToSameSize(NovaException):
811
799
    message = _("When resizing, instances must change size!")
812
800