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
|