This error started randomly after making a change in my program. There are no errors being diplayed by Netbeans.
I've encountered random errors in Netbeans 8.2 before that were usually resolved by deleting the cache but I have deleted the cache, restarted Netbeans and still get the same error.
I performed a clean and build to no avail.
The program ran. I can still compile it and run it on a separate machine, but Netbeans keeps giving me this error:
Exception in thread "main" java.lang.NullPointerException
at rss.RSSFeedParser.main(RSSFeedParser.java:157)
....\NetBeans\Cache\8.2\executor-snippets \run.xml:53: Java returned: 1
BUILD FAILED (total time: 3 seconds)
run.xml line 53
<java classpath="${classpath-translated}" classname="${classname}" dir="${work.dir}" jvm="${platform.java}" fork="true" failonerror="${java.failonerror}">
Update: I was catching a "NumberFormatException" on my try catch. Netbeans threw no errors on this previously until all of a sudden. I changed it to "Exception". The program Runs fine, but I have a suggestion from Netbeans to change it back to "NumberFormatException". What gives here? I thought that as long as the required exceptions were caught, there would not be a problem.