Bump reolink-aio to 0.3.0 (#86259)

* Bump reolink-aio to 0.3.0

* fix typo

* ReolinkException
This commit is contained in:
starkillerOG 2023-01-20 08:05:43 +01:00 committed by GitHub
parent 4be7b62607
commit 3c4455c696
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 38 additions and 60 deletions

View file

@ -2,5 +2,13 @@
from homeassistant.exceptions import HomeAssistantError
class UserNotAdmin(HomeAssistantError):
class ReolinkException(HomeAssistantError):
"""BaseException for the Reolink integration."""
class ReolinkSetupException(ReolinkException):
"""Raised when setting up the Reolink host failed."""
class UserNotAdmin(ReolinkException):
"""Raised when user is not admin."""