Files
hehe/system/src/Grav/Framework/Cache/Exception/CacheException.php
T
2018-08-01 16:00:05 +02:00

20 lines
501 B
PHP

<?php
/**
* @package Grav\Framework\Cache
*
* @copyright Copyright (C) 2015 - 2018 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Framework\Cache\Exception;
use Psr\SimpleCache\CacheException as SimpleCacheException;
/**
* CacheException class for PSR-16 compatible "Simple Cache" implementation.
* @package Grav\Framework\Cache\Exception
*/
class CacheException extends \Exception implements SimpleCacheException
{
}