From: Rodolfo Alonso Hernandez Date: Thu, 14 Jun 2018 17:07:41 +0000 (+0000) Subject: Merge "Add "host_name_separator" variable to Context class" X-Git-Tag: opnfv-7.0.0~259 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=9008c4f324b368dcd8594b7af76875e9b2720917;p=yardstick.git Merge "Add "host_name_separator" variable to Context class" --- 9008c4f324b368dcd8594b7af76875e9b2720917 diff --cc yardstick/common/exceptions.py index 966b15cf8,3ae49d812..18bb4aac8 --- a/yardstick/common/exceptions.py +++ b/yardstick/common/exceptions.py @@@ -147,28 -137,8 +147,28 @@@ class LibvirtQemuImageCreateError(Yards '%(base_image)s. 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):