20 lines
501 B
PHP
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
|
|
{
|
|
}
|