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