tencentcloud-sdk-nodejs-commontest
Version:
Tencent Cloud API NODEJS SDK
23 lines (22 loc) • 425 B
TypeScript
/**
* @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;
}