1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-kodi.git synced 2025-03-21 10:58:10 +00:00
jellyfin-kodi/resources/lib/emby/core/exceptions.py

12 lines
285 B
Python
Raw Normal View History

2018-09-06 03:36:32 -05:00
# -*- coding: utf-8 -*-
#################################################################################################
class HTTPException(Exception):
# Emby HTTP exception
def __init__(self, status, message):
self.status = status
self.message = message