UniqueConstraintViolationException.php 230 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 unique constraint violation detected in the driver.
9
 */
10
class UniqueConstraintViolationException extends ConstraintViolationException
11 12
{
}