gpt4 book ai didi

exception - Apache XML-RPC 异常处理

转载 作者:行者123 更新时间:2023-12-02 22:25:13 25 4
gpt4 key购买 nike

从 Apache 的 XML-RPC 实现返回的异常中提取原始异常的最简单方法是什么?

最佳答案

事实证明,从Apache异常中获取原因异常是正确的。

} catch (XmlRpcException rpce) {
Throwable cause = rpce.getCause();
if(cause != null) {
if(cause instanceof ExceptionYouCanHandleException) {
handler(cause);
}
else { throw(cause); }
}
else { throw(rpce); }
}

关于exception - Apache XML-RPC 异常处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51593/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com