异常处理
更新时间:2019-08-07
BVW异常提示有如下两种方式:
异常方法 | 说明 |
---|---|
BceClientException | 客户端异常 |
BceServerException | 服务器异常 |
用户可以使用try获取某个事件所产生的异常,例如:
String mediaId = 'mediaId';
try {
bvwClient.getMeida(mediaId);
} catch (BceServiceException bce){
System.out.println(bce.getMessage());
} catch (BceClientException bce){
System.out.println( bce.getMessage());
}