mirror of
https://github.com/home-assistant/core.git
synced 2025-04-30 12:17:52 +00:00
16 lines
338 B
Python
16 lines
338 B
Python
"""Errors for the Transmission component."""
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class AuthenticationError(HomeAssistantError):
|
|
"""Wrong Username or Password."""
|
|
|
|
|
|
class CannotConnect(HomeAssistantError):
|
|
"""Unable to connect to client."""
|
|
|
|
|
|
class UnknownError(HomeAssistantError):
|
|
"""Unknown Error."""
|