View Single Post
  #7 (permalink)  
Old 09-01-2008, 07:47 AM
fishtoprecords's Avatar
fishtoprecords fishtoprecords is offline
Senior Member
 
Join Date: Jun 2008
Posts: 520
fishtoprecords is on a distinguished road
Quote:
Originally Posted by booter4429 View Post
Here is the error
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
Set a debugging breakpoing where you call the code, and see what is null.

In all cases, a null pointer exception is a programmer error. You are the programmer, fix the bug. Don't pass a null.

The event queue stuff can be a bit of a challenge, if you get really stuck, put a bunch of PMD in your code and see where it stops.

PMD is Poor Man's Debugger, aka System.out.println(....
Reply With Quote