* @author Arnold Daniels */ declare(strict_types=1); namespace Desarrolla2\Cache\Exception; use Psr\SimpleCache\InvalidArgumentException as PsrInvalidArgumentException; /** * Exception for invalid cache arguments. */ class InvalidArgumentException extends \InvalidArgumentException implements PsrInvalidArgumentException { }