mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 14:05:34 +01:00
12 lines
257 B
Python
12 lines
257 B
Python
"""Errors for the Mikrotik component."""
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class CannotConnect(HomeAssistantError):
|
|
"""Unable to connect to the hub."""
|
|
|
|
|
|
class LoginError(HomeAssistantError):
|
|
"""Component got logged out."""
|