11 lines
276 B
Python
11 lines
276 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."""
|