lightweight exception capturing, logging
Change-Id: I5933d3982775f97000e2e8b60f5fad1bff16d34a
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/lcm/osm_common/msgbase.py b/lcm/osm_common/msgbase.py
index 745df7f..a105414 100644
--- a/lcm/osm_common/msgbase.py
+++ b/lcm/osm_common/msgbase.py
@@ -1,6 +1,8 @@
from http import HTTPStatus
+__author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
+
class MsgException(Exception):
"""
@@ -14,7 +16,7 @@
: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)
+ Exception.__init__(self, "messaging exception " + message)
class MsgBase(object):