summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Cache/LockException.php
blob: bb2d4ec5f7a7470cbfd7e4d9778a28855d4a440f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

declare(strict_types=1);

namespace Doctrine\ORM\Cache;

use Doctrine\ORM\Cache\Exception\CacheException;

/**
 * Lock exception for cache.
 */
class LockException extends CacheException
{
}