Home Assistant Unofficial Reference
2024.12.1
errors.py
Go to the documentation of this file.
1
"""Errors for the HomematicIP Cloud component."""
2
3
from
homeassistant.exceptions
import
HomeAssistantError
4
5
6
class
HmipcException
(
HomeAssistantError
):
7
"""Base class for HomematicIP Cloud exceptions."""
8
9
10
class
HmipcConnectionError
(
HmipcException
):
11
"""Unable to connect to the HomematicIP Cloud server."""
12
13
14
class
HmipcConnectionWait
(
HmipcException
):
15
"""Wait for registration to the HomematicIP Cloud server."""
16
17
18
class
HmipcRegistrationFailed
(
HmipcException
):
19
"""Registration on HomematicIP Cloud failed."""
20
21
22
class
HmipcPressButton
(
HmipcException
):
23
"""User needs to press the blue button."""
homeassistant.components.homematicip_cloud.errors.HmipcConnectionError
Definition:
errors.py:10
homeassistant.components.homematicip_cloud.errors.HmipcConnectionWait
Definition:
errors.py:14
homeassistant.components.homematicip_cloud.errors.HmipcException
Definition:
errors.py:6
homeassistant.components.homematicip_cloud.errors.HmipcPressButton
Definition:
errors.py:22
homeassistant.components.homematicip_cloud.errors.HmipcRegistrationFailed
Definition:
errors.py:18
homeassistant.exceptions.HomeAssistantError
Definition:
exceptions.py:34
homeassistant.exceptions
Definition:
exceptions.py:1
core
homeassistant
components
homematicip_cloud
errors.py
Generated by
1.9.1