mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 18:57:57 +00:00

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io> Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
11 lines
276 B
Python
11 lines
276 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."""
|