7 lines
177 B
Python
7 lines
177 B
Python
from src.exceptions.HttpClientException import HttpClientException
|
|
|
|
|
|
class ContentPathMissingException(HttpClientException):
|
|
code = 400
|
|
description = "Path is required"
|