It means you're referencing something that's null, for example:
class Test
{
public object SomeProp
{
get;
set;
}
}
new Test().SomeProp.ToString()
SomeProp will be null and should throw a NullReferenceException. This is commonly due to code you are calling expecting something to be there that isn't.