mirror of
https://github.com/home-assistant/core.git
synced 2025-05-17 20:39:16 +00:00
12 lines
309 B
Python
12 lines
309 B
Python
"""Sonos specific exceptions."""
|
|
from homeassistant.components.media_player.errors import BrowseError
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
|
|
|
|
class UnknownMediaType(BrowseError):
|
|
"""Unknown media type."""
|
|
|
|
|
|
class SpeakerUnavailable(HomeAssistantError):
|
|
"""Speaker is unavailable."""
|