mirror of
https://github.com/home-assistant/core.git
synced 2025-06-02 04:07:04 +00:00
12 lines
277 B
Python
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."""
|