Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 365 |
lars |
1 |
<?php declare(strict_types=1);
|
|
|
2 |
namespace PHPHtmlParser\Exceptions;
|
|
|
3 |
|
|
|
4 |
use Exception;
|
|
|
5 |
|
|
|
6 |
/**
|
|
|
7 |
* Class ChildNotFoundException
|
|
|
8 |
*
|
|
|
9 |
* @package PHPHtmlParser\Exceptions
|
|
|
10 |
*/
|
|
|
11 |
final class ChildNotFoundException extends Exception
|
|
|
12 |
{
|
|
|
13 |
}
|
|
|
14 |
|