mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 04:05:01 +01:00
2ec51ef113
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
16 lines
388 B
Python
16 lines
388 B
Python
"""Exceptions for fitbit API calls.
|
|
|
|
These exceptions provide common exceptions for the async
|
|
and sync client libraries.
|
|
"""
|
|
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class FitbitApiException(HomeAssistantError):
|
|
"""Error talking to the fitbit API."""
|
|
|
|
|
|
class FitbitAuthException(FitbitApiException):
|
|
"""Authentication related error talking to the fitbit API."""
|