8 lines
197 B
Python
8 lines
197 B
Python
|
"""Samsung SyncThru exceptions."""
|
||
|
|
||
|
from homeassistant.exceptions import HomeAssistantError
|
||
|
|
||
|
|
||
|
class SyncThruNotSupported(HomeAssistantError):
|
||
|
"""Error to indicate SyncThru is not supported."""
|