Java Stack Traces: Unknown Source

If you get a stack trace with "Unknown Source" like below…

Exception in thread "main" java.lang.NumberFormatException: For input string: "3.1415"
        at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
        at java.lang.Integer.parseInt(Integer.java:580)
        at ExampleCli.parseNumericArgument(Unknown Source)
        at ExampleCli.parseCliOptions(Unknown Source)
        at ExampleCli.main(Unknown Source)

…it means that the program lacks the relevant debugging information. Specifically the class files are missing the LineNumberTable attribute (JVMS 4.7.12).

Possible reasons

Solution

Comments

Be the first to comment!