aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/common
diff options
context:
space:
mode:
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2018-03-27 16:47:50 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-03-27 16:47:50 +0000
commit79da68a8d4529bbc132228785f0e4c40506fa3ab (patch)
tree536d1b6a1f5879f478428e10374d0542f118a9b7 /yardstick/common
parent052a13ab65063c2f50468161e278d348a403c660 (diff)
parent365ded3d2089fff98f4d8562fb277112b242645f (diff)
Merge "Improve "Libvirt.virsh_create_vm" function"
Diffstat (limited to 'yardstick/common')
-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 9ae2c68cd..439b9cb1b 100644
--- a/yardstick/common/exceptions.py
+++ b/yardstick/common/exceptions.py
@@ -108,6 +108,10 @@ class OVSSetupError(YardstickException):
message = 'OVS setup error. Command: %(command)s. Error: %(error)s.'
+class LibvirtCreateError(YardstickException):
+ message = 'Error creating the virtual machine. Error: %(error)s.'
+
+
class ScenarioConfigContextNameNotFound(YardstickException):
message = 'Context name "%(context_name)s" not found'