ConstraintViolationException.php 245 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
 * Base class for all constraint violation related errors detected in the driver.
9 10
 *
 * @psalm-immutable
11
 */
12
class ConstraintViolationException extends ServerException
13 14
{
}