mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 03:07:50 +00:00
12 lines
270 B
Python
12 lines
270 B
Python
"""Errors for the HLK-SW16 component."""
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class SW16Exception(HomeAssistantError):
|
|
"""Base class for HLK-SW16 exceptions."""
|
|
|
|
|
|
class CannotConnect(SW16Exception):
|
|
"""Unable to connect to the HLK-SW16."""
|