11 lines
278 B
Python
11 lines
278 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."""
|