the-kbA-team/cache

View on GitHub
src/Exceptions/InvalidArgumentException.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace kbATeam\Cache\Exceptions;

use Exception;

/**
 * Class kbATeam\Cache\Exceptions\InvalidArgumentException
 *
 * Exception interface for invalid cache arguments.
 *
 * When an invalid argument is passed it must throw an exception.
 *
 * @category Exception
 * @package  kbATeam\Cache\Exceptions
 * @license  MIT
 * @link     https://github.com/the-kbA-team/cache.git Repository
 */
class InvalidArgumentException extends Exception implements \Psr\SimpleCache\InvalidArgumentException
{
}