class BaseResponse(object): def __init__(self): self.code = 1000 self.data = None self.error = None @property def dict(self): return self.__dict__ class TokenResponse(BaseResponse): def __init__(self): super(BaseResponse).__init__() self.code = 1000 self.token = None
class PricePolicyIncalid(Exception): def __init__(self, msg): self.msg = msg