1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-27 14:31:13 +00:00
Files
core/homeassistant/components/media_player/errors.py
2024-03-08 09:01:29 -05:00

12 lines
277 B
Python

"""Errors for the Media Player component."""
from homeassistant.exceptions import HomeAssistantError
class MediaPlayerException(HomeAssistantError):
"""Base class for Media Player exceptions."""
class BrowseError(MediaPlayerException):
"""Error while browsing."""