mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00
11 lines
287 B
Python
11 lines
287 B
Python
"""Custom exceptions for the devolo_home_control integration."""
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class CredentialsInvalid(HomeAssistantError):
|
|
"""Given credentials are invalid."""
|
|
|
|
|
|
class UuidChanged(HomeAssistantError):
|
|
"""UUID of the user changed."""
|