7 lines
175 B
Python
7 lines
175 B
Python
from src.exceptions.HttpClientException import HttpClientException
|
|
|
|
|
|
class ContentNotFoundException(HttpClientException):
|
|
code = 404
|
|
description = "Content not found"
|