import { HttpStatus } from '@nestjs/common'; import { DomainException } from './domain.exception'; export class EntityNotFoundException extends DomainException { constructor(entity: string, id: string | number) { super(`${entity} ${id} not found`, HttpStatus.NOT_FOUND); } }