class ClientNotDefined(Exception): """ If order_synced field is not defined throw exception """ def __init__(self, message="client field is not defined"): self.message = message super().__init__(self.message)