次のようなコードがあるとします。
Random rnd=new Random();
try {
if(rnd.nextInt(1000)==0) {
throw new Exception();
}
// repeat above code N times, N being big.
}catch(Exception e) {
LOGGER.error("caught:", e);
}
ここで、catch 句にブレークポイントを追加します。キャッチされた場合、例外をスローする行番号をどのように把握できますか?