UNPKG

tencentcloud-sdk-nodejs-commontest

Version:
23 lines (22 loc) 425 B
/** * @inner */ export default class TencentCloudSDKHttpException extends Error { /** * 请求id */ requestId: string; /** * http状态码 */ httpCode?: number; /** * 接口返回状态码 */ code?: string; constructor(error: string, requestId?: string); getMessage(): string; getRequestId(): string; toString(): string; toLocaleString(): string; }