ParentNotFoundException.php 186 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. namespace PHPHtmlParser\Exceptions;
  4. use Exception;
  5. /**
  6. * Class ParentNotFoundException.
  7. */
  8. final class ParentNotFoundException extends Exception
  9. {
  10. }