/**
  * Exclude object from result
  *
  * @param   ChildCurrencyNumericCode $currencyNumericCode Object to remove from the list of results
  *
  * @return ChildCurrencyNumericCodeQuery The current query, for fluid interface
  */
 public function prune($currencyNumericCode = null)
 {
     if ($currencyNumericCode) {
         $this->addUsingAlias(CurrencyNumericCodeTableMap::CODE, $currencyNumericCode->getCode(), Criteria::NOT_EQUAL);
     }
     return $this;
 }