import { NotFoundException } from "@nestjs/common"; class EntryNotFoundException extends NotFoundException { constructor(uuid: string) { super(`Entry with UUID ${uuid} not found`) } } export default EntryNotFoundException