gpt4 book ai didi

java - bean 壳捕获(ex): Exception or Throwable?

转载 作者:搜寻专家 更新时间:2023-11-01 01:59:11 25 4
gpt4 key购买 nike

beanshell catch(ex) 捕获什么类型的异常:Exception 还是 Throwable?

例子:

try {
.... } catch (ex) { }

最佳答案

松散类型的 catch 将捕获所有“Throwable”。这将包括 Errors , Exceptions和他们无数的 child 。您可以通过以下方式轻松确认这一点:

try {
new Throwable("Something Exceptional");
} catch (ex) {
System.err.println(ex.getMessage());
}

关于java - bean 壳捕获(ex): Exception or Throwable?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/227667/

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