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