Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 308 Bytes

error.md

File metadata and controls

14 lines (12 loc) · 308 Bytes

错误处理

了解如何处理不同类型的 SDK 异常,包括参数错误,RetCode 不为 0 的业务异常等。

try {
    resp = await client.uhost().describeImage();
} catch (e) {
    console.log(e.typ);
    console.log(e.retCode);
    console.log(e.requestId);
    throw e;
}