summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression/stateful_tests/tests_exceptions.py
blob: 604efcc8ba5162305b64abd951b348b590bd464d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/router/bin/python

class TRexInUseError(Exception):
	def __init__(self, value):
		self.value = value
	def __str__(self):
		return repr(self.value)

class TRexRunFailedError(Exception):
	def __init__(self, value):
		self.value = value
	def __str__(self):
		return repr(self.value)

class TRexIncompleteRunError(Exception):
	def __init__(self, value):
		self.value = value
	def __str__(self):
		return repr(self.value)

class TRexLowCpuUtilError(Exception):
	def __init__(self, value):
		self.value = value
	def __str__(self):
		return repr(self.value)

class AbnormalResultError(Exception):
	def __init__(self, value):
		self.value = value
	def __str__(self):
		return repr(self.value)

class ClassificationMissmatchError(Exception):
	def __init__(self, value):
		self.value = value
	def __str__(self):
		return repr(self.value)