/**
  * Get country name.
  *
  * @return string|false Country name or FALSE on failure
  */
 public function getCountryName()
 {
     try {
         return $this->geoLiteCountry->lookupCountryName($this->ip);
     } catch (Exception $exception) {
         return false;
     }
 }