CacheException.php 453 B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. * This file is part of the Behat Gherkin.
  4. * (c) Konstantin Kudryashov <ever.zet@gmail.com>
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. namespace Behat\Gherkin\Exception;
  10. use RuntimeException;
  11. /**
  12. * Cache exception.
  13. *
  14. * @author Konstantin Kudryashov <ever.zet@gmail.com>
  15. */
  16. class CacheException extends RuntimeException implements Exception
  17. {
  18. }