ExceptionHandler.php in Drupal 9
File
core/lib/Drupal/Core/Database/Driver/mysql/ExceptionHandler.php
View source
<?php
namespace Drupal\Core\Database\Driver\mysql;
use Drupal\Component\Utility\Unicode;
use Drupal\Core\Database\DatabaseExceptionWrapper;
use Drupal\Core\Database\ExceptionHandler as BaseExceptionHandler;
use Drupal\Core\Database\IntegrityConstraintViolationException;
use Drupal\Core\Database\StatementInterface;
class ExceptionHandler extends BaseExceptionHandler {
public function handleExecutionException(\Exception $exception, StatementInterface $statement, array $arguments = [], array $options = []) : void {
if (array_key_exists('throw_exception', $options)) {
@trigger_error('Passing a \'throw_exception\' option to ' . __METHOD__ . ' is deprecated in drupal:9.2.0 and is removed in drupal:10.0.0. Always catch exceptions. See https://www.drupal.org/node/3201187', E_USER_DEPRECATED);
if (!$options['throw_exception']) {
return;
}
}
if ($exception instanceof \PDOException) {
$code = is_int($exception
->getCode()) ? $exception
->getCode() : 0;
if (($exception->errorInfo[1] ?? NULL) === 1153) {
$message = Unicode::truncateBytes($exception
->getMessage(), Connection::MIN_MAX_ALLOWED_PACKET);
throw new DatabaseExceptionWrapper($message, $code, $exception);
}
$message = $exception
->getMessage() . ": " . $statement
->getQueryString() . "; " . print_r($arguments, TRUE);
if (substr($exception
->getCode(), -6, -3) == '23' || ($exception->errorInfo[1] ?? NULL) === 1364) {
throw new IntegrityConstraintViolationException($message, $code, $exception);
}
throw new DatabaseExceptionWrapper($message, 0, $exception);
}
throw $exception;
}
}