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