summaryrefslogtreecommitdiffstats
path: root/vendor/psr/simple-cache/src/InvalidArgumentException.php
blob: f97bca01d94f7f8d71b764a8da0e050525d686c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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
{
}