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