import { HttpException } from './http.exception'; /** * Exception for HTTP 404 Not Found errors */ export declare class NotFoundException extends HttpException { constructor(message?: string); }