CollectionMismatchException.php 523 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * This file is part of the ramsey/collection library
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
  9. * @license http://opensource.org/licenses/MIT MIT
  10. */
  11. declare(strict_types=1);
  12. namespace Ramsey\Collection\Exception;
  13. /**
  14. * Thrown when attempting to operate on collections of differing types.
  15. */
  16. class CollectionMismatchException extends \RuntimeException
  17. {
  18. }