fengketrade/vendor/psr/cache/src/CacheException.php

11 lines
162 B
PHP
Raw Normal View History

2025-10-16 21:07:43 +08:00
<?php
namespace Psr\Cache;
/**
* Exception interface for all exceptions thrown by an Implementing Library.
*/
2025-10-20 09:23:30 +08:00
interface CacheException extends \Throwable
2025-10-16 21:07:43 +08:00
{
}