blob: a6913ed0cb24ea60c4cff8418a8d24fa40519941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Cache;
use Doctrine\DBAL\Exception;
/** @psalm-immutable */
class CacheException extends \Exception implements Exception
{
}
|