7 lines
176 B
Python
7 lines
176 B
Python
from src.exceptions.HttpClientException import HttpClientException
|
|
|
|
|
|
class FolderNotEmptyException(HttpClientException):
|
|
code = 400
|
|
description = "Folder is not empty"
|