mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 19:23:34 +00:00
6055c29d74
This will broadcast the new discovery message on the new port and log any responses received as unsupported devices.
10 lines
239 B
Python
10 lines
239 B
Python
"""python-kasa exceptions."""
|
|
|
|
|
|
class SmartDeviceException(Exception):
|
|
"""Base exception for device errors."""
|
|
|
|
|
|
class UnsupportedDeviceException(SmartDeviceException):
|
|
"""Exception for trying to connect to unsupported devices."""
|