2019-09-11 01:56:28 +02:00
|
|
|
"""Device automation exceptions."""
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidDeviceAutomationConfig(HomeAssistantError):
|
|
|
|
"""When device automation config is invalid."""
|
2020-02-02 07:13:07 -08:00
|
|
|
|
|
|
|
|
|
|
|
class DeviceNotFound(HomeAssistantError):
|
|
|
|
"""When referenced device not found."""
|