cosmic_bird
03-13-2003, 05:29 PM
java.lang.NullPointerException
![]() | View Full Version : What does this common error mean? cosmic_bird 03-13-2003, 05:29 PM java.lang.NullPointerException Aralanthir 03-13-2003, 06:06 PM Usually, it means you're trying to use an object that's null. (At least, whenever I get that error, that's the case with me.) Try checking to see if the object has been initialized before you use one of its methods. Hope that helps, |