Remove some unused exceptions from Cinder

This patch removes some unused exceptions that came along
with the export from Cinder.  Since os-brick doesn't include
target side code, we remove the target associated exceptions.

Change-Id: I0096e76f958e04829b98d5c4c47f49c82b58d8aa
This commit is contained in:
Walter A. Boring IV 2015-02-17 16:59:07 -08:00
parent 4f4ced7d8f
commit 2dc39e83d0
1 changed files with 0 additions and 20 deletions

View File

@ -96,25 +96,5 @@ class VolumeDeviceNotFound(BrickException):
message = _("Volume device not found at %(device)s.")
class VolumeGroupNotFound(BrickException):
message = _('Unable to find Volume Group: %(vg_name)s')
class VolumeGroupCreationFailed(BrickException):
message = _('Failed to create Volume Group: %(vg_name)s')
class ISCSITargetCreateFailed(BrickException):
message = _("Failed to create iscsi target for volume %(volume_id)s.")
class ISCSITargetRemoveFailed(BrickException):
message = _("Failed to remove iscsi target for volume %(volume_id)s.")
class ISCSITargetAttachFailed(BrickException):
message = _("Failed to attach iSCSI target for volume %(volume_id)s.")
class ProtocolNotSupported(BrickException):
message = _("Connect to volume via protocol %(protocol)s not supported.")