10 lines
272 B
Python
10 lines
272 B
Python
|
|
from tofu_api.common.exceptions import AppException
|
||
|
|
|
||
|
|
|
||
|
|
class ObjectNotFoundException(AppException):
|
||
|
|
"""
|
||
|
|
Exception raised when a database object was not found, i.e. does not exist or is inaccessible for the user.
|
||
|
|
"""
|
||
|
|
status_code = 404
|
||
|
|
code = 'not_found'
|