obscreen/plugins/system/CoreApi/exception/ContentPathMissingException.py
2024-08-04 02:13:13 +02:00

12 lines
274 B
Python

from src.exceptions.HttpClientException import HttpClientException
class ContentPathMissingException(HttpClientException):
@property
def code(self) -> int:
return 400
@property
def description(self) -> int:
return "Valid path is required"