7 lines
173 B
Python
7 lines
173 B
Python
from src.exceptions.HttpClientException import HttpClientException
|
|
|
|
|
|
class FolderNotFoundException(HttpClientException):
|
|
code = 404
|
|
description = "Folder not found"
|