aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/common
diff options
context:
space:
mode:
authorAbhijit Sinha <abhijit.sinha@intel.com>2018-08-03 13:25:34 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-08-03 13:25:34 +0000
commited4f6ec69e225ca57872bd2b7f85f5a15e44adcd (patch)
treec3bb64fb9c35cf571694fedfe1e8b0bc624ee406 /yardstick/common
parent8d9b8727102545fedaa0e9a144ecb1958f446cd9 (diff)
parentda33d374ef656da0648059439f2e28a0bfe2f13a (diff)
Merge "Add UDP ports configuration to IXIA traffic profile"
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 48f15c059..9fbe19949 100644
--- a/yardstick/common/exceptions.py
+++ b/yardstick/common/exceptions.py
@@ -88,6 +88,10 @@ class YardstickBannedModuleImported(YardstickException):
message = 'Module "%(module)s" cannnot be imported. Reason: "%(reason)s"'
+class IXIAUnsupportedProtocol(YardstickException):
+ message = 'Protocol "%(protocol)" is not supported in IXIA'
+
+
class PayloadMissingAttributes(YardstickException):
message = ('Error instantiating a Payload class, missing attributes: '
'%(missing_attributes)s')