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

export class AdminConfigNotFoundException extends NotFoundException {
  constructor(error?: string) {
    super('Admin config not found', error);
  }
}