PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
doctrine
/
dbal
/
src
/
Exception
<?php namespace Doctrine\DBAL\Exception; use Doctrine\DBAL\Exception; use function sprintf; /** * @internal * * @psalm-immutable */ final class NoKeyValue extends Exception { public static function fromColumnCount(int $columnCount): self { return new self( sprintf( 'Fetching as key-value pairs requires the result to contain at least 2 columns, %d given.', $columnCount ) ); } }
[-] ConnectionLost.php
[edit]
[-] ServerException.php
[edit]
[-] InvalidFieldNameException.php
[edit]
[-] SyntaxErrorException.php
[edit]
[-] TableExistsException.php
[edit]
[-] ForeignKeyConstraintViolationException.php
[edit]
[+]
..
[-] DriverException.php
[edit]
[-] ReadOnlyException.php
[edit]
[-] DatabaseObjectExistsException.php
[edit]
[-] DeadlockException.php
[edit]
[-] InvalidLockMode.php
[edit]
[-] InvalidArgumentException.php
[edit]
[-] TableNotFoundException.php
[edit]
[-] RetryableException.php
[edit]
[-] LockWaitTimeoutException.php
[edit]
[-] ConstraintViolationException.php
[edit]
[-] NonUniqueFieldNameException.php
[edit]
[-] UniqueConstraintViolationException.php
[edit]
[-] DatabaseObjectNotFoundException.php
[edit]
[-] NoKeyValue.php
[edit]
[-] NotNullConstraintViolationException.php
[edit]
[-] ConnectionException.php
[edit]