Better exception handling
[testsuite/pythonsdk-tests.git] / src / onaptests / utils / exceptions.py
index daadc32..8b359c3 100644 (file)
@@ -1,6 +1,4 @@
-#!/usr/bin/env python
-
-# Copyright (c) 2018 Orange and others.
+# Copyright (c) 2018-2020 Orange and others.
 #
 # All rights reserved. This program and the accompanying materials
 # are made available under the terms of the Apache License, Version 2.0
 
 __author__ = ("Morgan Richomme <morgan.richomme@orange.com>")
 
+class  OnapTestException(Exception):
+    """Parent Class for all Onap Test Exceptions."""
+    error_message='Generic OnapTest exception'
 
-class TestConfigurationException(Exception):
+class TestConfigurationException(OnapTestException):
     """Raise when configutation of the use cases is not complete or buggy."""
+    error_message='Configuration error'
 
-
-class ServiceDistributionException(Exception):
+class ServiceDistributionException(OnapTestException):
     """Service not properly distributed."""
+    error_message='Service not well distributed'
 
 
-class ServiceInstantiateException(Exception):
-    """Service cannot be instantiate."""
+class ServiceInstantiateException(OnapTestException):
+    """Service cannot be instantiated."""
+    error_message='Service instantiation error'
 
 
-class ServiceCleanupException(Exception):
+class ServiceCleanupException(OnapTestException):
     """Service cannot be cleaned."""
+    error_message='Service not well cleaned up'
 
 
-class VnfInstantiateException(Exception):
-    """VNF cannot be instantiate."""
+class VnfInstantiateException(OnapTestException):
+    """VNF cannot be instantiated."""
+    error_message='VNF instantiation error'
 
 
-class VnfCleanupException(Exception):
+class VnfCleanupException(OnapTestException):
     """VNF cannot be cleaned."""
+    error_message="VNF can't be cleaned"
 
 
-class VfModuleInstantiateException(Exception):
-    """VF Module cannot be instantiate."""
+class VfModuleInstantiateException(OnapTestException):
+    """VF Module cannot be instantiated."""
+    error_message='VF Module instantiation error'
 
 
-class VfModuleCleanupException(Exception):
-    """VF Module cannot be instantiate."""
+class VfModuleCleanupException(OnapTestException):
+    """VF Module cannot be cleaned."""
+    error_message="VF Module can't be cleaned"
 
 
-class NetworkInstantiateException(Exception):
+class NetworkInstantiateException(OnapTestException):
     """Network cannot be instantiate."""
+    error_message='Network instantiation error'
 
 
-class NetworkCleanupException(Exception):
+class NetworkCleanupException(OnapTestException):
     """Network cannot be cleaned."""
+    error_message="Network can't be cleaned"
 
-class ProfileInformationException(Exception):
+class ProfileInformationException(OnapTestException):
     """Missing k8s profile information."""
+    error_message='"Missing k8s profile information'
 
-class ProfileCleanupException(Exception):
+class ProfileCleanupException(OnapTestException):
     """K8s profile cannot be cleaned."""
+    error_message="Profile can't be cleaned"