iot-admin/vendor/psr/simple-cache/src/CacheException.php

11 lines
173 B
PHP
Raw Normal View History

2023-11-30 22:53:01 +08:00
<?php
namespace Psr\SimpleCache;
/**
* Interface used for all types of exceptions thrown by the implementing library.
*/
2023-12-03 23:09:30 +08:00
interface CacheException extends \Throwable
2023-11-30 22:53:01 +08:00
{
}