0 follower

Final Class Yiisoft\Cache\Exception\RemoveCacheException

InheritanceYiisoft\Cache\Exception\RemoveCacheException » Yiisoft\Cache\Exception\CacheException » RuntimeException
ImplementsPsr\SimpleCache\CacheException

Method Details

Hide inherited methods

__construct() public method

public mixed __construct ( string $key )
$key string

                public function __construct(string $key)
{
    parent::__construct($key, 'Failed to delete the cache.');
}

            
getKey() public method
public string getKey ( )

                public function getKey(): string
{
    return $this->key;
}