异常
普通 Exception
threadPool.submit(() -> {
try {
product.createRecord().put("name", "name").put("level", 10).save();
// 操作成功...
} catch (Exception e) {
Log.d(TAG, e.getMessage(), e);
// 操作失败...
}
});SDK 内的自定义 Exception
Last updated
Was this helpful?