mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
12 lines
285 B
Python
12 lines
285 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
#################################################################################################
|
||
|
|
||
|
class HTTPException(Exception):
|
||
|
# Emby HTTP exception
|
||
|
def __init__(self, status, message):
|
||
|
self.status = status
|
||
|
self.message = message
|
||
|
|
||
|
|