1
0
mirror of https://github.com/home-assistant/core.git synced 2025-07-20 03:37:07 +00:00

12 lines
278 B
Python

"""Errors for the Acmeda Pulse component."""
from homeassistant.exceptions import HomeAssistantError
class PulseException(HomeAssistantError):
"""Base class for Acmeda Pulse exceptions."""
class CannotConnect(PulseException):
"""Unable to connect to the bridge."""