mirror of
https://gitee.com/liuxioabin/fengketrade.git
synced 2026-04-19 05:23:18 +08:00
11 lines
162 B
PHP
11 lines
162 B
PHP
<?php
|
|
|
|
namespace Psr\Cache;
|
|
|
|
/**
|
|
* Exception interface for all exceptions thrown by an Implementing Library.
|
|
*/
|
|
interface CacheException extends \Throwable
|
|
{
|
|
}
|