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