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