import { NotFoundException } from '@nestjs/common'; import { ErrorDetail, IAbstractError } from './abstract.error'; export declare class NotFoundError extends NotFoundException implements IAbstractError { private readonly pDetails; constructor(details?: ErrorDetail[]); get details(): ErrorDetail[]; }