From: Emma Foley Date: Fri, 22 Jun 2018 15:21:59 +0000 (+0000) Subject: Merge "Add "host_name_separator" variable to Context class" into stable/fraser X-Git-Tag: opnfv-6.2.0~59 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=65b073e55618513633f11111ba9a2ced577d1d31;p=yardstick.git Merge "Add "host_name_separator" variable to Context class" into stable/fraser --- 65b073e55618513633f11111ba9a2ced577d1d31 diff --cc yardstick/common/exceptions.py index 2b72d7fcf,55bcfdb63..6a5b09e79 --- a/yardstick/common/exceptions.py +++ b/yardstick/common/exceptions.py @@@ -122,28 -112,8 +122,28 @@@ class LibvirtCreateError(YardstickExcep message = 'Error creating the virtual machine. Error: %(error)s.' +class SSHError(YardstickException): + message = '%(error_msg)s' + + +class SSHTimeout(SSHError): + pass + + +class IncorrectConfig(YardstickException): + message = '%(error_msg)s' + + +class IncorrectSetup(YardstickException): + message = '%(error_msg)s' + + +class IncorrectNodeSetup(IncorrectSetup): + pass + + class ScenarioConfigContextNameNotFound(YardstickException): - message = 'Context name "%(context_name)s" not found' + message = 'Context for host name "%(host_name)s" not found' class StackCreationInterrupt(YardstickException):