mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
9 lines
259 B
Python
9 lines
259 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
#################################################################################################
|
|
|
|
|
|
class LibraryException(Exception):
|
|
# Jellyfin library sync exception
|
|
def __init__(self, status):
|
|
self.status = status
|