phoole/cache

View on GitHub
src/Exception/NotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Phoole (PHP7.2+)
 *
 * @category  Library
 * @package   Phoole\Base
 * @copyright Copyright (c) 2019 Hong Zhang
 */
declare(strict_types=1);

namespace Phoole\Cache\Exception;

use Psr\SimpleCache\CacheException;

/**
 * NotFoundException
 *
 * @package Phoole\Base
 */
class NotFoundException
    extends \Phoole\Base\Exception\NotFoundException
    implements CacheException
{
}