10 lines
281 B
Python
10 lines
281 B
Python
"""Errors for the NEW_NAME integration."""
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class CannotConnect(HomeAssistantError):
|
|
"""Error to indicate we cannot connect."""
|
|
|
|
|
|
class InvalidAuth(HomeAssistantError):
|
|
"""Error to indicate there is invalid auth."""
|