Current path: home/webdevt/www/schtroumpf.fr/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli/Exception/
?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/Mysqli
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\Mysqli\Exception;
use Doctrine\DBAL\Driver\Mysqli\MysqliException;
use function sprintf;
/**
* @internal
*
* @psalm-immutable
*/
final class UnknownType extends MysqliException
{
/**
* @param mixed $type
*/
public static function new($type): self
{
return new self(sprintf('Unknown type, %d given.', $type));
}
}