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