summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Exception/UniqueConstraintViolationException.php
blob: ab04a29284ad29bb65d67e5747eac48b83d8887f (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 unique constraint violation detected in the driver.
 *
 * @psalm-immutable
 */
class UniqueConstraintViolationException extends ConstraintViolationException
{
}