protected AliasStorage::catchException(\Exception $e)
Act on an exception when url_alias 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 url_alias is stale and the exception needs to propagate.
$e: The exception.
\Exception
protected function catchException(\Exception $e) { if ($this->connection->schema()->tableExists(static::TABLE)) { throw $e; } }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Path!AliasStorage.php/function/AliasStorage::catchException/8.1.x