mirror of
https://github.com/home-assistant/core.git
synced 2026-02-06 07:15:43 +01:00
12 lines
279 B
Python
12 lines
279 B
Python
"""Errors for the Konnected component."""
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class KonnectedException(HomeAssistantError):
|
|
"""Base class for Konnected exceptions."""
|
|
|
|
|
|
class CannotConnect(KonnectedException):
|
|
"""Unable to connect to the panel."""
|