DeadlockException.php 231 Bytes
Newer Older
1 2 3 4 5 6
<?php

namespace Doctrine\DBAL\Exception;

/**
 * Exception for a deadlock error of a transaction detected in the driver.
7 8
 *
 * @psalm-immutable
9
 */
10
class DeadlockException extends ServerException implements RetryableException
11 12
{
}