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