summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Exception/DeadlockException.php
blob: 90003874194ebe8fca4c8efc617a1802735d8199 (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 deadlock error of a transaction detected in the driver.
 *
 * @psalm-immutable
 */
class DeadlockException extends ServerException implements RetryableException
{
}