mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 03:37:51 +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
|