hass-core/homeassistant/components/transmission/errors.py
Rami Mosleh 82b77c2d29 Add config flow to transmission (#26434)
* Add config flow to transmission

* Reworked code to add all sensors and switches

* applied fixes

* final touches

* Add tests

* fixed tests

* fix get_api errors and entities availabilty update

* update config_flows.py

* fix pylint error

* update .coveragerc

* add codeowner

* add test_options

* fixed test_options
2019-09-26 11:14:57 +02:00

14 lines
337 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."""