obscreen/plugins/system/CoreApi/exception/ContentNotFoundException.py
2024-08-04 05:03:46 +02:00

7 lines
175 B
Python

from src.exceptions.HttpClientException import HttpClientException
class ContentNotFoundException(HttpClientException):
code = 404
description = "Content not found"