mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 02:07:54 +00:00
11 lines
291 B
Python
11 lines
291 B
Python
"""Device automation exceptions."""
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class InvalidDeviceAutomationConfig(HomeAssistantError):
|
|
"""When device automation config is invalid."""
|
|
|
|
|
|
class DeviceNotFound(HomeAssistantError):
|
|
"""When referenced device not found."""
|