Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<?php
2
 
3
namespace 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
 */
11
interface InvalidArgumentException extends CacheException
12
{
13
}