mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-18 15:31:28 +01:00
11 lines
154 B
PHP
11 lines
154 B
PHP
<?php
|
|
|
|
namespace Psr\SimpleCache;
|
|
|
|
/**
|
|
* Interface used for all types of exceptions thrown by the implementing library.
|
|
*/
|
|
interface CacheException
|
|
{
|
|
}
|