lightweight build structure
Change-Id: I7a04acdd31dd6ce97546fd762c3c5d550387806d
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/lcm/osm_common/msgbase.py b/lcm/osm_common/msgbase.py
new file mode 100644
index 0000000..745df7f
--- /dev/null
+++ b/lcm/osm_common/msgbase.py
@@ -0,0 +1,39 @@
+
+from http import HTTPStatus
+
+
+class MsgException(Exception):
+ """
+ Base Exception class for all msgXXXX exceptions
+ """
+
+ def __init__(self, message, http_code=HTTPStatus.INTERNAL_SERVER_ERROR):
+ """
+ General exception
+ :param message: descriptive text
+ :param http_code: <http.HTTPStatus> type. It contains ".value" (http error code) and ".name" (http error name
+ """
+ self.http_code = http_code
+ Exception.__init__(self, message)
+
+
+class MsgBase(object):
+ """
+ Base class for all msgXXXX classes
+ """
+
+ def __init__(self):
+ pass
+
+ def connect(self, config):
+ pass
+
+ def write(self, msg):
+ pass
+
+ def read(self):
+ pass
+
+ def disconnect(self):
+ pass
+