X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=lcm%2Fosm_common%2Fmsgbase.py;h=a1054146071c05d8379d5ec5eca6730f5165c049;hb=ae501920e1c0e03c8571bece610dd5518e6e86b9;hp=745df7f69e6d1eb5e173559e7d31f3dd5b70a921;hpb=c887cc2fdd02c898ecd1f08d6927043027fd07eb;p=osm%2FRO.git diff --git a/lcm/osm_common/msgbase.py b/lcm/osm_common/msgbase.py index 745df7f6..a1054146 100644 --- a/lcm/osm_common/msgbase.py +++ b/lcm/osm_common/msgbase.py @@ -1,6 +1,8 @@ from http import HTTPStatus +__author__ = "Alfonso Tierno " + class MsgException(Exception): """ @@ -14,7 +16,7 @@ class MsgException(Exception): :param http_code: 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):