次の方法でInterruptedExceptionをスローできないのはなぜですか。
try {
System.in.wait(5) //Just an example
} catch (InterruptedException exception) {
exception.printStackTrace();
//On this next line I am confused as to why it will not let me throw the exception
throw exception;
}
http://java24hours.comにアクセスしましたが、InterruptedExceptionをスローできなかった理由がわかりませんでした。
誰かが理由を知っているなら、教えてください!私は絶望的です!:S