mirror of
https://github.com/andvikt/mega_hacs.git
synced 2025-12-10 16:44:28 +05:00
- add ws28 support - add transitions to pwm - add units of measurement for all i2c sensors - remove mqtt support
17 lines
369 B
Python
17 lines
369 B
Python
from homeassistant import exceptions
|
|
|
|
|
|
class CannotConnect(exceptions.HomeAssistantError):
|
|
"""Error to indicate we cannot connect."""
|
|
|
|
|
|
class DuplicateId(exceptions.HomeAssistantError):
|
|
"""Error to indicate duplicate id"""
|
|
|
|
|
|
class InvalidAuth(exceptions.HomeAssistantError):
|
|
"""Error to indicate there is invalid auth."""
|
|
|
|
|
|
class NoPort(Exception):
|
|
pass |