import { NotFoundException } from '@nestjs/common'; export class MonthlyRecordNotFoundException extends NotFoundException { constructor(error?: string) { super('Monthly record not found', error); } }