summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Exception/NonUniqueFieldNameException.php
blob: 96a85823b40a28f9be25de8ed12686880a3c6805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Exception;

/**
 * Exception for a non-unique/ambiguous specified field name in a statement detected in the driver.
 *
 * @psalm-immutable
 */
class NonUniqueFieldNameException extends ServerException
{
}