From 44a7889025c418048ba3edcc4aabbd106072edf1 Mon Sep 17 00:00:00 2001 From: "Walter A. Boring IV" Date: Wed, 8 May 2019 19:51:22 +0000 Subject: [PATCH] remove unused exceptions This patch removes 2 unused EMC VNX exceptions. Change-Id: I70a9e11e76c9bb79295913b7a63fa428a5f16178 --- cinder/exception.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/cinder/exception.py b/cinder/exception.py index 0232e26c2e3..51102dc7eb2 100644 --- a/cinder/exception.py +++ b/cinder/exception.py @@ -1102,16 +1102,6 @@ class NetAppDriverException(VolumeDriverException): message = _("NetApp Cinder Driver exception.") -class EMCVnxCLICmdError(VolumeBackendAPIException): - message = _("EMC VNX Cinder Driver CLI exception: %(cmd)s " - "(Return Code: %(rc)s) (Output: %(out)s).") - - -class EMCSPUnavailableException(EMCVnxCLICmdError): - message = _("EMC VNX Cinder Driver SPUnavailableException: %(cmd)s " - "(Return Code: %(rc)s) (Output: %(out)s).") - - # ConsistencyGroup class ConsistencyGroupNotFound(NotFound): message = _("ConsistencyGroup %(consistencygroup_id)s could not be found.")