CircularException.php 174 B

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