public function findMulti(array $queries, array $options = array())
 {
     if (count($queries) > 1) {
         // why?
         throw new DataModelException(__METHOD__ . ' expects only one value in $queries', 'process-data');
     }
     return parent::findMulti($queries, $options);
 }