aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/common/exceptions.py
diff options
context:
space:
mode:
authorAbhijit Sinha <abhijit.sinha@intel.com>2018-06-22 13:24:20 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-06-22 13:24:20 +0000
commitc8a3679b57eafd2c7855dc82bd028308fa92f4e2 (patch)
treee6fe6a727a77a80cadf636ee9fe00a4628494b38 /yardstick/common/exceptions.py
parentaeb3cd61b405335684ca3a2228c4df236c064b45 (diff)
parent3fdca97ff5053770161059a34a95fd39463eaecd (diff)
Merge "Configure ACL via static file"
Diffstat (limited to 'yardstick/common/exceptions.py')
-rw-r--r--yardstick/common/exceptions.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/yardstick/common/exceptions.py b/yardstick/common/exceptions.py
index 954d655cb..f2d2e95c1 100644
--- a/yardstick/common/exceptions.py
+++ b/yardstick/common/exceptions.py
@@ -313,3 +313,12 @@ class IxNetworkFieldNotPresentInStackItem(YardstickException):
class SLAValidationError(YardstickException):
message = '%(case_name)s SLA validation failed. Error: %(error_msg)s'
+
+
+class AclMissingActionArguments(YardstickException):
+ message = ('Missing ACL action parameter '
+ '[action=%(action_name)s parameter=%(action_param)s]')
+
+
+class AclUknownActionTemplate(YardstickException):
+ message = 'No ACL CLI template found for "%(action_name)s" action'