Home Assistant Unofficial Reference
2024.12.1
exceptions.py
Go to the documentation of this file.
1
"""Exceptions for the Reolink Camera integration."""
2
3
from
homeassistant.exceptions
import
HomeAssistantError
4
5
6
class
ReolinkException
(
HomeAssistantError
):
7
"""BaseException for the Reolink integration."""
8
9
10
class
ReolinkSetupException
(
ReolinkException
):
11
"""Raised when setting up the Reolink host failed."""
12
13
14
class
ReolinkWebhookException
(
ReolinkException
):
15
"""Raised when registering the reolink webhook failed."""
16
17
18
class
UserNotAdmin
(
ReolinkException
):
19
"""Raised when user is not admin."""
20
21
22
class
PasswordIncompatible
(
ReolinkException
):
23
"""Raised when the password contains special chars that are incompatible."""
homeassistant.components.reolink.exceptions.PasswordIncompatible
Definition:
exceptions.py:22
homeassistant.components.reolink.exceptions.ReolinkException
Definition:
exceptions.py:6
homeassistant.components.reolink.exceptions.ReolinkSetupException
Definition:
exceptions.py:10
homeassistant.components.reolink.exceptions.ReolinkWebhookException
Definition:
exceptions.py:14
homeassistant.components.reolink.exceptions.UserNotAdmin
Definition:
exceptions.py:18
homeassistant.exceptions.HomeAssistantError
Definition:
exceptions.py:34
homeassistant.exceptions
Definition:
exceptions.py:1
core
homeassistant
components
reolink
exceptions.py
Generated by
1.9.1