假设你有这样的代码:
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 子句中添加一个断点。如果它得到 caugt,我怎样才能找出引发异常的行号?