vendor/tedivm/stash/src/Stash/Exception/InvalidArgumentException.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Stash package.
  4.  *
  5.  * (c) Robert Hafner <tedivm@tedivm.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Stash\Exception;
  11. /**
  12.  * Exception thrown if an argument does not match with the expected value.
  13.  *
  14.  * Class InvalidArgumentException
  15.  * @package Stash\Exception
  16.  * @author  Robert Hafner <tedivm@tedivm.com>
  17.  */
  18. class InvalidArgumentException extends \InvalidArgumentException implements Exception\Psr\Cache\InvalidArgumentException
  19. {
  20. }