mirror of
https://github.com/home-assistant/core.git
synced 2025-05-11 01:19:18 +00:00
16 lines
409 B
Python
16 lines
409 B
Python
"""Shared exceptions for the august integration."""
|
|
|
|
from homeassistant import exceptions
|
|
|
|
|
|
class RequireValidation(exceptions.HomeAssistantError):
|
|
"""Error to indicate we require validation (2fa)."""
|
|
|
|
|
|
class CannotConnect(exceptions.HomeAssistantError):
|
|
"""Error to indicate we cannot connect."""
|
|
|
|
|
|
class InvalidAuth(exceptions.HomeAssistantError):
|
|
"""Error to indicate there is invalid auth."""
|