core/homeassistant/components/reolink/exceptions.py

15 lines
396 B
Python
Raw Normal View History

"""Exceptions for the Reolink Camera integration."""
from homeassistant.exceptions import 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."""