summaryrefslogtreecommitdiffstats
path: root/vendor/psr/simple-cache/src/InvalidArgumentException.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/psr/simple-cache/src/InvalidArgumentException.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/psr/simple-cache/src/InvalidArgumentException.php b/vendor/psr/simple-cache/src/InvalidArgumentException.php
new file mode 100644
index 0000000..f97bca0
--- /dev/null
+++ b/vendor/psr/simple-cache/src/InvalidArgumentException.php
@@ -0,0 +1,13 @@
+<?php
+
+namespace Psr\SimpleCache;
+
+/**
+ * Exception interface for invalid cache arguments.
+ *
+ * When an invalid argument is passed it must throw an exception which implements
+ * this interface
+ */
+interface InvalidArgumentException extends CacheException
+{
+}