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