mirror of
				https://github.com/home-assistant/core.git
				synced 2025-10-31 14:39:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			380 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			380 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."""
 | |
| 
 | |
| 
 | |
| class EntityNotFound(HomeAssistantError):
 | |
|     """When referenced entity not found."""
 | 
