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