jellyfin-kodi/resources/lib/emby/core/exceptions.py
2018-09-06 03:36:32 -05:00

11 lines
285 B
Python

# -*- coding: utf-8 -*-
#################################################################################################
class HTTPException(Exception):
# Emby HTTP exception
def __init__(self, status, message):
self.status = status
self.message = message