# ----------------------------------------------------------- # Library to login to xiaomi cloud and get device info. # # (C) 2020 Sammy Svensson # Released under MIT License # email sammy@ssvensson.se # ----------------------------------------------------------- class MiCloudException(Exception): """Exception raised for errors in the micloud library. Attributes: message -- explanation of the error """ def __init__(self, message): self.message = message super().__init__(self.message) class MiCloudAccessDenied(Exception): """Exception raised for wrong credentials in the micloud library. Attributes: message -- explanation of the error """ def __init__(self, message): self.message = message super().__init__(self.message)