java.lang.nullpointerException (sin mensaje de error)
// 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