Files
core/homeassistant/components/konnected/errors.py
2024-03-08 09:01:29 -05:00

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."""