Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
CacheException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php declare(strict_types=1);
2/**
3 * Banker
4 *
5 * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
6 *
7 * PHP version 8+
8 *
9 * @package     Banker
10 * @author      Timothy J. Warren <tim@timshomepage.net>
11 * @copyright   2016 - 2023  Timothy J. Warren
12 * @license     http://www.opensource.org/licenses/mit-license.html  MIT License
13 * @version     4.1.0
14 * @link        https://git.timshomepage.net/timw4mail/banker
15 */
16namespace Aviat\Banker\Exception;
17
18use Psr\Cache\CacheException as CacheExceptionInterface;
19use Psr\SimpleCache\CacheException as SimpleCacheExceptionInterface;
20
21/**
22 * Exception interface for all exceptions thrown by an Implementing Library.
23 */
24class CacheException extends \Exception implements CacheExceptionInterface, SimpleCacheExceptionInterface {
25
26}