/**
  * Destroy the data for a particular session identifier in the SessionHandler backend.
  *
  * @param   string $id The session identifier.
  *
  * @throws \Exception
  * @return  boolean  True on success, false otherwise.
  *
  * @since   2.0
  */
 public function destroy($id)
 {
     try {
         return $this->db->destroy($id);
     } catch (\Exception $e) {
         throw $e;
     }
 }