penisularhr / src / exceptions / monthly-record.ts
monthly-record.ts
Raw
import { NotFoundException } from '@nestjs/common';

export class MonthlyRecordNotFoundException extends NotFoundException {
  constructor(error?: string) {
    super('Monthly record not found', error);
  }
}