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