mirror of
https://github.com/mx42/home-assistant-ecocito.git
synced 2026-01-14 05:49:51 +01:00
16 lines
375 B
Python
16 lines
375 B
Python
"""Errors for the Hue component."""
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class EcocitoError(HomeAssistantError):
|
|
"""Base class for ecocito exceptions."""
|
|
|
|
|
|
class CannotConnectError(EcocitoError):
|
|
"""Unable to connect to the ecocito servers."""
|
|
|
|
|
|
class InvalidAuthenticationError(EcocitoError):
|
|
"""Error to indicate there is invalid auth."""
|