* @copyright 2024 * @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP * @since 6.0 */ namespace Studip\Cache; /** * The InvalidCacheArgumentException is an implementation of the InvalidArgumentException interface * of PSR-6 that behaves like a StudipException. */ class InvalidCacheArgumentException extends \StudipException implements \Psr\Cache\InvalidArgumentException { //Nothing here, since there is nothing to implement. }