1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-30 04:05:01 +01:00
Files
core/homeassistant/components/fitbit/exceptions.py
T
2026-05-14 16:29:56 -04:00

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."""