mirror of
https://github.com/home-assistant/core.git
synced 2025-06-30 18:07:08 +00:00
12 lines
278 B
Python
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."""
|