mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
重试工具新增获取异常原因等相关方法
This commit is contained in:
parent
76bac0e6a4
commit
d771c7f5ff
@ -182,6 +182,7 @@ public class RetryableTask<T> {
|
||||
* 获取结果, 如果无法获取结果, 则抛出最后一次执行时的异常
|
||||
*
|
||||
* @return 结果
|
||||
* @throws Throwable 获取结果时, 如果无法获取结果, 则抛出最后一次执行时的异常
|
||||
*/
|
||||
public T orElseThrow() throws Throwable {
|
||||
return Optional.ofNullable(this.result).orElseThrow(() -> this.throwable().orElse(new RuntimeException()));
|
||||
|
Loading…
Reference in New Issue
Block a user