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