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'