X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=yardstick%2Fcommon%2Fexceptions.py;h=5e0df973a2bc145d8d2fa1f915829775c00f526b;hb=623bdf1027b031a4ba8e26d1843d5148793d1112;hp=b39a0af9cc405492ec9a90b002f44534cd16b532;hpb=b14feea5830bf9800ed8b589a43f87fab4dba772;p=yardstick.git diff --git a/yardstick/common/exceptions.py b/yardstick/common/exceptions.py index b39a0af9c..5e0df973a 100644 --- a/yardstick/common/exceptions.py +++ b/yardstick/common/exceptions.py @@ -79,6 +79,14 @@ class FunctionNotImplemented(YardstickException): '"%(class_name)" class.') +class InvalidType(YardstickException): + message = 'Type "%(type_to_convert)s" is not valid' + + +class InvalidRxfFile(YardstickException): + message = 'Loaded rxf file has unexpected format' + + class InfluxDBConfigurationMissing(YardstickException): message = ('InfluxDB configuration is not available. Add "influxdb" as ' 'a dispatcher and the configuration section') @@ -416,3 +424,15 @@ class InvalidMacAddress(YardstickException): class ValueCheckError(YardstickException): message = 'Constraint "%(value1)s %(operator)s %(value2)s" does not hold' + + +class RestApiError(RuntimeError): + def __init__(self, message): + self._message = message + super(RestApiError, self).__init__(message) + + +class LandslideTclException(RuntimeError): + def __init__(self, message): + self._message = message + super(LandslideTclException, self).__init__(message)