blob: 6a9524a20c009663c4058f2a3a2c419c43e4f6a1 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Psr\SimpleCache;
4
5/**
6 * Exception interface for invalid cache arguments.
7 *
8 * When an invalid argument is passed it must throw an exception which implements
9 * this interface
10 */
11interface InvalidArgumentException extends CacheException
12{
13}