Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| SetTreeException | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @author: Doug Wilbourne (dougwilbourne@gmail.com) |
| 5 | */ |
| 6 | declare (strict_types=1); |
| 7 | |
| 8 | |
| 9 | namespace pvc\struct\tree\err; |
| 10 | |
| 11 | |
| 12 | use pvc\err\stock\LogicException; |
| 13 | use Throwable; |
| 14 | |
| 15 | /** |
| 16 | * Class SetTreeIdException |
| 17 | */ |
| 18 | class SetTreeException extends LogicException |
| 19 | { |
| 20 | public function __construct(string $nodeId, ?Throwable $previous = null) |
| 21 | { |
| 22 | parent::__construct($nodeId, $previous); |
| 23 | } |
| 24 | } |