This repository has been archived on 2025-09-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
YaHueLib/yahuelib/exceptions.py

9 lines
206 B
Python

# Copyright (c) 2023 Julian Müller (ChaoticByte)
class DeviceNotFound(Exception):
'''`DeviceNotFound` Exception'''
pass
class APIError(Exception):
'''Generic `APIError` Exception'''
pass