Consider the following exception print
java.util.NoSuchElementException at java.util.StringTokenizer.nextToken(StringTokenizer.java:332) at com.infoaxe.mr.homefeed.ReduceTwo.reduce(MapReduce.java:290)
Since Java is a compiled language, and what works in the JVM is bytecode and not the source code itself, how is the exception known, on which line did it happen? Example line 332 in the above example?
source share