blob: 549f96dcb2b21b349e4e8531aa1fe93dd76e6a7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\PgSQL\Exception;
use Doctrine\DBAL\Driver\AbstractException;
use function sprintf;
/** @psalm-immutable */
final class UnknownParameter extends AbstractException
{
public static function new(string $param): self
{
return new self(
sprintf('Could not find parameter %s in the SQL statement', $param),
);
}
}
|