mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
11 lines
371 B
Python
11 lines
371 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import division, absolute_import, print_function, unicode_literals
|
|
|
|
#################################################################################################
|
|
|
|
|
|
class HTTPException(Exception):
|
|
# Jellyfin HTTP exception
|
|
def __init__(self, status, message):
|
|
self.status = status
|
|
self.message = message
|