1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 13:38:04 +00:00
Files
core/homeassistant/components/transmission/errors.py
2024-03-08 10:35:23 -05:00

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."""