else:
                 self._state_execute = True
             initial_exception = None
+            error_reason = []
             try:
                 execution_status: Optional[ReportStepStatus] = ReportStepStatus.FAIL
                 if cleanup:
                 if initial_exception:
                     substep_exc = OnapTestExceptionGroup("Cleanup Exceptions",
                                                          [initial_exception, substep_exc])
+                error_reason = substep_exc.root_cause
                 raise substep_exc
             except (OnapTestException, SDKException) as test_exc:
                 if initial_exception:
                     test_exc = OnapTestExceptionGroup("Cleanup Exceptions",
                                                       [initial_exception, test_exc])
+                if isinstance(test_exc, OnapTestException):
+                    error_reason = test_exc.root_cause
+                else:
+                    error_reason = [str(test_exc)]
                 raise test_exc
             finally:
                 if not cleanup:
                         step_description=self._step_title(cleanup),
                         step_execution_status=execution_status,
                         step_execution_duration=time.time() - self._start_cleanup_time,
-                        step_component=self.component
+                        step_component=self.component,
+                        step_error_reason=error_reason
                     )
                 else:
                     if not self._start_execution_time:
                         step_execution_status=(execution_status if execution_status else
                                                ReportStepStatus.FAIL),
                         step_execution_duration=time.time() - self._start_execution_time,
-                        step_component=self.component
+                        step_component=self.component,
+                        step_error_reason=error_reason
                     )
             wrapper._is_wrapped = True
         return wrapper
         Override this method and remember to call `super().execute()` before.
 
         """
-        substep_error = False
+        substep_exceptions = []
         for step in self._steps:
             try:
                 step.execute()
             except (OnapTestException, SDKException) as substep_err:
-                substep_error = True
                 if step._break_on_error:
-                    raise SubstepExecutionException from substep_err
-                self._logger.exception(substep_err)
+                    raise SubstepExecutionException("", substep_err) # noqa: W0707
+                substep_exceptions.append(substep_err)
         if self._steps:
-            if substep_error and self._break_on_error:
-                raise SubstepExecutionException("Cannot continue due to failed substeps")
+            if len(substep_exceptions) > 0 and self._break_on_error:
+                if len(substep_exceptions) == 1:
+                    raise SubstepExecutionException("", substep_exceptions[0])
+                raise SubstepExecutionExceptionGroup("", substep_exceptions)
             self._log_execution_state("CONTINUE")
         self._substeps_executed = True
         self._start_execution_time = time.time()
                     step._default_cleanup_handler()
             except (OnapTestException, SDKException) as substep_err:
                 try:
-                    raise SubstepExecutionException from substep_err
+                    raise SubstepExecutionException("", substep_err) # noqa: W0707
                 except Exception as e:
                     exceptions_to_raise.append(e)
         if len(exceptions_to_raise) > 0:
             if len(exceptions_to_raise) == 1:
                 raise exceptions_to_raise[0]
-            raise SubstepExecutionExceptionGroup("Substep Exceptions", exceptions_to_raise)
+            raise SubstepExecutionExceptionGroup("", exceptions_to_raise)
 
     def execute(self) -> None:
         """Step's execute.
 
 
 class OnapTestException(Exception):
     """Parent Class for all Onap Test Exceptions."""
-    error_message = 'Generic OnapTest exception'
-
-
-class OnapTestExceptionGroup(ExceptionGroup, OnapTestException):  # noqa
+    def __init__(self, __message='Generic OnapTest exception', *args, **kwargs): # noqa: W1113
+        super().__init__(__message, *args, **kwargs)
+        self.error_message = __message
+        if self.error_message:
+            self.error_message = str(self.error_message)
+
+    def __str__(self):
+        values = self.root_cause
+        if len(values) == 0:
+            return ""
+        if len(values) == 1:
+            return str(values[0])
+        return str(values)
+
+    @property
+    def root_cause(self):
+        """Real reason of the test exception"""
+        return [self.error_message]
+
+
+class OnapTestExceptionGroup(OnapTestException, ExceptionGroup):  # noqa
     """Group of Onap Test Exceptions."""
-    error_message = 'Generic OnapTest exception group'
-
-
-class SkipExecutionException(OnapTestException):
-    """Used only for validation purposes"""
+    def __init__(self, __message='Generic OnapTest exception group', __exceptions=None):
+        super().__init__(__message, __exceptions)
 
 
 class TestConfigurationException(OnapTestException):
     """Raise when configuration of the use case is incomplete or buggy."""
-    error_message = 'Configuration error'
+    def __init__(self, __message='Configuration error'):
+        super().__init__(__message)
 
 
 class ServiceDistributionException(OnapTestException):
     """Service not properly distributed."""
-    error_message = 'Service not well distributed'
+    def __init__(self, __message='Service not well distributed'):
+        super().__init__(__message)
 
 
 class ServiceInstantiateException(OnapTestException):
     """Service cannot be instantiated."""
-    error_message = 'Service instantiation error'
+    def __init__(self, __message='Service instantiation error'):
+        super().__init__(__message)
 
 
 class ServiceCleanupException(OnapTestException):
     """Service cannot be cleaned."""
-    error_message = 'Service not well cleaned up'
+    def __init__(self, __message='Service not well cleaned up'):
+        super().__init__(__message)
 
 
 class VnfInstantiateException(OnapTestException):
     """VNF cannot be instantiated."""
-    error_message = 'VNF instantiation error'
+    def __init__(self, __message='VNF instantiation error'):
+        super().__init__(__message)
 
 
 class VnfCleanupException(OnapTestException):
     """VNF cannot be cleaned."""
-    error_message = "VNF can't be cleaned"
+    def __init__(self, __message="VNF can't be cleaned"):
+        super().__init__(__message)
 
 
 class VfModuleInstantiateException(OnapTestException):
     """VF Module cannot be instantiated."""
-    error_message = 'VF Module instantiation error'
+    def __init__(self, __message='VF Module instantiation error'):
+        super().__init__(__message)
 
 
 class VfModuleCleanupException(OnapTestException):
     """VF Module cannot be cleaned."""
-    error_message = "VF Module can't be cleaned"
+    def __init__(self, __message="VF Module can't be cleaned"):
+        super().__init__(__message)
 
 
 class NetworkInstantiateException(OnapTestException):
     """Network cannot be instantiated."""
-    error_message = 'Network instantiation error'
+    def __init__(self, __message='Network instantiation error'):
+        super().__init__(__message)
 
 
 class NetworkCleanupException(OnapTestException):
     """Network cannot be cleaned."""
-    error_message = "Network can't be cleaned"
+    def __init__(self, __message="Network can't be cleaned"):
+        super().__init__(__message)
 
 
 class ProfileInformationException(OnapTestException):
     """Missing k8s profile information."""
-    error_message = 'Missing k8s profile information'
+    def __init__(self, __message='Missing k8s profile information'):
+        super().__init__(__message)
 
 
 class ProfileCleanupException(OnapTestException):
     """K8s profile cannot be cleaned."""
-    error_message = "Profile can't be cleaned"
+    def __init__(self, __message="Profile can't be cleaned"):
+        super().__init__(__message)
 
 
 class EnvironmentPreparationException(OnapTestException):
     """Test environment preparation exception."""
-    error_message = "Test can't be run properly due to preparation error"
+    def __init__(self, __message="Test can't be run properly due to preparation error"):
+        super().__init__(__message)
 
 
 class SubstepExecutionException(OnapTestException):
     """Exception raised if substep execution fails."""
+    def __init__(self, __message, __exception):
+        super().__init__(__message)
+        self.sub_exception = __exception
+
+    @property
+    def root_cause(self):
+        """Real reason of the test exception"""
+        if hasattr(self, "sub_exception"):
+            if isinstance(self.sub_exception, OnapTestException):
+                return self.sub_exception.root_cause
+            return [str(self.sub_exception)]
+        return super().root_cause
 
 
 class SubstepExecutionExceptionGroup(ExceptionGroup, SubstepExecutionException):  # noqa
     """Group of Substep Exceptions."""
+    def __init__(self, __message="Substeps group has failed",
+                 __exceptions=None):
+        super().__init__(__message, __exceptions)
+        self.sub_exceptions = __exceptions
+
+    @property
+    def root_cause(self):
+        """Real reason of the test exception"""
+        if self.sub_exceptions:
+            values = []
+            for exc in self.sub_exceptions:
+                if isinstance(exc, OnapTestException):
+                    values.extend(exc.root_cause)
+                else:
+                    values.append(str(exc))
+            return values
+        return super().root_cause
 
 
 class EnvironmentCleanupException(OnapTestException):
     """Test environment cleanup exception."""
-    error_message = "Test couldn't finish a cleanup"
+    def __init__(self, __message="Test couldn't finish a cleanup"):
+        super().__init__(__message)
 
 
 class PolicyException(OnapTestException):
     """Policy exception."""
-    error_message = "Problem with policy module"
+    def __init__(self, __message="Problem with policy module"):
+        super().__init__(__message)
 
 
 class DcaeException(OnapTestException):
     """DCAE exception."""
-    error_message = "Problem with DCAE module"
+    def __init__(self, __message="Problem with DCAE module"):
+        super().__init__(__message)
 
 
 class StatusCheckException(OnapTestException):
     """Status Check exception."""
-    error_message = "Namespace status check has failed"
+    def __init__(self, __message="Namespace status check has failed"):
+        super().__init__(__message)