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

export class PublicHolidayNotFoundException extends NotFoundException {
  constructor(error?: string) {
    super('Public holiday not found', error);
  }
}