/**
  * Exclude object from result
  *
  * @param   ChildInputError $inputError Object to remove from the list of results
  *
  * @return $this|ChildInputErrorQuery The current query, for fluid interface
  */
 public function prune($inputError = null)
 {
     if ($inputError) {
         $this->addUsingAlias(InputErrorTableMap::COL_ID, $inputError->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }