mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 23:04:55 +01:00
12 lines
275 B
Python
12 lines
275 B
Python
"""The errors of Epson integration."""
|
|
|
|
from homeassistant import exceptions
|
|
|
|
|
|
class CannotConnect(exceptions.HomeAssistantError):
|
|
"""Error to indicate we cannot connect."""
|
|
|
|
|
|
class PoweredOff(exceptions.HomeAssistantError):
|
|
"""Error to indicate projector is off."""
|