java中是否有任何替代方法可以使jdk1.6中的代码成为可能。我知道在 jdk 1.7 中也是可能的,但我坚持使用 jdk1.6。
下面的代码可以捕获多个异常,我想处理这些异常并将其添加到数据库表中。由于对于所有 3 个异常,我的异常处理逻辑将保持不变。我不想为多个 catch 块重复相同的代码。
try{
//do somthing here
}catch(CustomException1 ex1 | CustomException2 ex2 | CustomException3 ex3){
// Here goes common Exception handing logic.
}