mirror of
https://github.com/home-assistant/core.git
synced 2026-05-25 17:56:30 +01:00
2e6346ca43
* Break up websocket 2 * Lint+Test * Lintttt * Rename
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
|