bluetree-service/cache

View on GitHub
src/CacheException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace BlueCache;

use Exception;
use Psr\Cache\CacheException as CacheExceptionInterface;

/**
 * Exception interface for all exceptions thrown by an Implementing Library.
 */
class CacheException extends Exception implements CacheExceptionInterface
{
}