/**
* Deletes expired items.
*/
public function garbageCollection() { try { $this->connection->
delete('key_value_expire'
) ->
condition('expire', REQUEST_TIME, '<'
) ->
execute();
} catch (\Exception
$e) { $this->
catchException($e);
} } /**
* Act on an exception when the table might not have been created.
*
* If the table does not yet exist, that's fine, but if the table exists and
* yet the query failed, then the exception needs to propagate.
*
* @param \Exception $e
* The exception.
*
* @throws \Exception
*/