You are here

protected function DatabaseQueue::catchException in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Queue/DatabaseQueue.php \Drupal\Core\Queue\DatabaseQueue::catchException()
  2. 9 core/lib/Drupal/Core/Queue/DatabaseQueue.php \Drupal\Core\Queue\DatabaseQueue::catchException()

Act on an exception when queue might be stale.

If the table does not yet exist, that's fine, but if the table exists and yet the query failed, then the queue is stale and the exception needs to propagate.

Parameters

$e: The exception.

Throws

\Exception If the table exists the exception passed in is rethrown.

File

core/lib/Drupal/Core/Queue/DatabaseQueue.php, line 296

Class

DatabaseQueue
Default queue implementation.

Namespace

Drupal\Core\Queue

Code

protected function catchException(\Exception $e) {
  if ($this->connection
    ->schema()
    ->tableExists(static::TABLE_NAME)) {
    throw $e;
  }
}