aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/utils/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/utils/exceptions.py')
-rw-r--r--src/onaptests/utils/exceptions.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/onaptests/utils/exceptions.py b/src/onaptests/utils/exceptions.py
index 6842714..978e628 100644
--- a/src/onaptests/utils/exceptions.py
+++ b/src/onaptests/utils/exceptions.py
@@ -14,6 +14,15 @@ class OnapTestException(Exception):
error_message = 'Generic OnapTest exception'
+class OnapTestExceptionGroup(ExceptionGroup, OnapTestException): # noqa
+ """Group of Onap Test Exceptions."""
+ error_message = 'Generic OnapTest exception group'
+
+
+class SkipExecutionException(OnapTestException):
+ """Used only for validation purposes"""
+
+
class TestConfigurationException(OnapTestException):
"""Raise when configuration of the use case is incomplete or buggy."""
error_message = 'Configuration error'
@@ -83,6 +92,10 @@ class SubstepExecutionException(OnapTestException):
"""Exception raised if substep execution fails."""
+class SubstepExecutionExceptionGroup(ExceptionGroup, SubstepExecutionException): # noqa
+ """Group of Substep Exceptions."""
+
+
class EnvironmentCleanupException(OnapTestException):
"""Test environment cleanup exception."""
error_message = "Test couldn't finish a cleanup"