コード:
catch (IOException e) {
LOGGER.error("IOException exception happened");
//now need throw again the same exception to be
//catched in the upper method
}
しかし、私が単純に試してみると:
catch (IOException e) {
LOGGER.error("IOException exception happened");
//now need throw again the same exception to be
//catched in the upper method
throw e;
}
Eclipseは、trycatchブロックに「throwe」を入れると想定しています。しかし、これはナンセンスです。この問題をどのように修正しますか?ありがとう。