2021-04-23 11:48:24 +00:00
|
|
|
"""Custom exceptions for the devolo_home_control integration."""
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
|
|
|
|
|
|
class CredentialsInvalid(HomeAssistantError):
|
|
|
|
"""Given credentials are invalid."""
|
2021-06-28 13:01:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
class UuidChanged(HomeAssistantError):
|
|
|
|
"""UUID of the user changed."""
|