%PDF- %PDF-
Direktori : /www/old2/_muzikoterapie/uloziste.eacm.cz/3rdparty/doctrine/dbal/src/Driver/PDO/ |
Current File : /www/old2/_muzikoterapie/uloziste.eacm.cz/3rdparty/doctrine/dbal/src/Driver/PDO/Exception.php |
<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver\PDO; use Doctrine\DBAL\Driver\AbstractException; use PDOException; /** * @internal * * @psalm-immutable */ final class Exception extends AbstractException { public static function new(PDOException $exception): self { if ($exception->errorInfo !== null) { [$sqlState, $code] = $exception->errorInfo; if ($code === null) { $code = 0; } } else { $code = $exception->getCode(); $sqlState = null; } return new self($exception->getMessage(), $sqlState, $code, $exception); } }