"""Playlist synchronization exception. Mirrors PlaylistSynchronizationException.cs from Sony.Filtr.PlaylistSynchronization. """ from .enums import SyncError class PlaylistSynchronizationException(Exception): def __init__(self, message: str, error: SyncError): super().__init__(message) self.error = error