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