diff options
Diffstat (limited to 'vendor/psr/simple-cache/src/CacheException.php')
-rw-r--r-- | vendor/psr/simple-cache/src/CacheException.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/psr/simple-cache/src/CacheException.php b/vendor/psr/simple-cache/src/CacheException.php new file mode 100644 index 0000000..4e5a06d --- /dev/null +++ b/vendor/psr/simple-cache/src/CacheException.php @@ -0,0 +1,10 @@ +<?php
+
+namespace Psr\SimpleCache;
+
+/**
+ * Interface used for all types of exceptions thrown by the implementing library.
+ */
+interface CacheException
+{
+}
|