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 0000000..be7c6fa
--- /dev/null
+++ b/vendor/psr/cache/src/InvalidArgumentException.php
@@ -0,0 +1,13 @@
1<?php
2
3namespace Psr\Cache;
4
5/**
6 * Exception interface for invalid cache arguments.
7 *
8 * Any time an invalid argument is passed into a method it must throw an
9 * exception class which implements Psr\Cache\InvalidArgumentException.
10 */
11interface InvalidArgumentException extends CacheException
12{
13}