mirror of
https://github.com/home-assistant/core.git
synced 2025-05-06 23:19:18 +00:00
15 lines
335 B
Python
15 lines
335 B
Python
"""Errors for the Hue component."""
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class HueException(HomeAssistantError):
|
|
"""Base class for Hue exceptions."""
|
|
|
|
|
|
class CannotConnect(HueException):
|
|
"""Unable to connect to the bridge."""
|
|
|
|
|
|
class AuthenticationRequired(HueException):
|
|
"""Unknown error occurred."""
|