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

12 lines
264 B
Python

from src.exceptions.HttpClientException import HttpClientException
class FolderNotFoundException(HttpClientException):
@property
def code(self) -> int:
return 404
@property
def description(self) -> int:
return "Folder not found"