summaryrefslogtreecommitdiff
path: root/vendor/psr/cache/src/CacheException.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/psr/cache/src/CacheException.php')
-rw-r--r--vendor/psr/cache/src/CacheException.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/psr/cache/src/CacheException.php b/vendor/psr/cache/src/CacheException.php
new file mode 100644
index 0000000..bb785f4
--- /dev/null
+++ b/vendor/psr/cache/src/CacheException.php
@@ -0,0 +1,10 @@
1<?php
2
3namespace Psr\Cache;
4
5/**
6 * Exception interface for all exceptions thrown by an Implementing Library.
7 */
8interface CacheException extends \Throwable
9{
10}