NonUniqueFieldNameException.php 262 Bytes
Newer Older
1 2
<?php

Michael Moravec's avatar
Michael Moravec committed
3 4
declare(strict_types=1);

5 6 7
namespace Doctrine\DBAL\Exception;

/**
8
 * Exception for a non-unique/ambiguous specified field name in a statement detected in the driver.
9 10
 *
 * @psalm-immutable
11
 */
12
class NonUniqueFieldNameException extends ServerException
13 14
{
}