/**
  * {@inheritdoc}
  */
 public function update($object)
 {
     try {
         $this->manager->save($object);
     } catch (DBALException $e) {
         throw new ModelManagerException('', 0, $e);
     } catch (\PDOException $e) {
         throw new ModelManagerException('', 0, $e);
     }
 }