in dubbo_client/rpcerror.py [0:0]
def __init__(self, message=None, data=None, code=None):
RuntimeError.__init__(self)
self.message = message or self.message
self.data = data
self.code = code or self.code
assert self.code, "Error without code is not allowed."