/** * 核心异常类 * NotFoundException * code 404 * @author ranyunlong<549510622@qq.com> * license MIT */ import { HttpException, Properties } from "./HttpException"; /** * @code 404 */ export declare class NotFoundException extends HttpException { constructor(properties?: Properties | boolean, error?: Properties, message?: string); }