私はこのような状態にあります
String str = null;
try{
...
str = "condition2";
}catch (ApplicationException ae) {
str = "condition3";
}catch (IllegalStateException ise) {
str = "condition3";
}catch (Exception e) {
str = "condition3";
}
if(str == null){
str = "none";
}
str = "condition3";
今、私はすべてを一行にまとめたいと思います。最後にブロックは常に実行されるので、それは私のニーズを満たしません。他に何ができるか。