mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 00:05:33 +01:00
16 lines
336 B
Python
16 lines
336 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."""
|