1
0
mirror of https://github.com/home-assistant/core.git synced 2025-07-20 11:47:06 +00:00

12 lines
277 B
Python

"""Errors for the Netgear component."""
from homeassistant.exceptions import HomeAssistantError
class NetgearException(HomeAssistantError):
"""Base class for Netgear exceptions."""
class CannotLoginException(NetgearException):
"""Unable to login to the router."""