java.lang.nullpointerException (pas de message d'erreur)

// One of the simplest ways to address this exception is to check if the object being used is null
// Here is a sample code:
if (objectBeingChecked != null)
{
	// ...
}
else
{
	// raise error/exception
}
CompSciGeek