aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/common/exceptions.py
diff options
context:
space:
mode:
authorShobhi Jain <shobhi.jain@intel.com>2018-02-19 16:50:51 +0000
committerShobhi Jain <shobhi.jain@intel.com>2018-03-12 10:58:47 +0000
commit5d5c7649d60901042e26d7d8400dc2d1ca2fb586 (patch)
treed9c48f9b44f28f5eb4c51906b1920a7c8e04cd5c /yardstick/common/exceptions.py
parent9f26e65c62fd5a4a1fbf9048e3bfe857b18729c9 (diff)
Replace neutron router deletion with shade.
Function delete_neutron_router now uses shade client instead of neutron client. JIRA: YARDSTICK-890 Change-Id: I5b557b640396f343b85b5f5eff415384decc083c Signed-off-by: Shobhi Jain <shobhi.jain@intel.com>
Diffstat (limited to 'yardstick/common/exceptions.py')
-rw-r--r--yardstick/common/exceptions.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/yardstick/common/exceptions.py b/yardstick/common/exceptions.py
index 4245ce12f..a0edd3ba9 100644
--- a/yardstick/common/exceptions.py
+++ b/yardstick/common/exceptions.py
@@ -108,3 +108,7 @@ class ScenarioCreateNetworkError(YardstickException):
class ScenarioCreateSubnetError(YardstickException):
message = 'Create Neutron Subnet Scenario failed'
+
+
+class ScenarioDeleteRouterError(YardstickException):
+ message = 'Delete Neutron Router Scenario failed'