mirror of
https://github.com/elisspace/core.git
synced 2026-08-31 16:34:00 +00:00
9 lines
184 B
Python
9 lines
184 B
Python
"""WebSocket API related errors."""
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class Disconnect(HomeAssistantError):
|
|
"""Disconnect the current session."""
|
|
|
|
pass
|