InvalidArgumentException.php 212 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace Laminas\Escaper\Exception;
  4. /**
  5. * Invalid argument exception
  6. */
  7. class InvalidArgumentException extends \InvalidArgumentException implements
  8. ExceptionInterface
  9. {
  10. }