blob: 350d80ffc9ca1100750dc73ff1796c22beb73cdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Driver\PgSQL\Exception;
use Doctrine\DBAL\Driver\Exception;
use UnexpectedValueException;
use function sprintf;
/** @psalm-immutable */
final class UnexpectedValue extends UnexpectedValueException implements Exception
{
public static function new(string $value, string $type): self
{
return new self(sprintf(
'Unexpected value "%s" of type "%s" returned by Postgres',
$value,
$type,
));
}
/** @return null */
public function getSQLState(): string|null
{
return null;
}
}
|