Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
InvalidNodeIdException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2/**
3 * @author: Doug Wilbourne (dougwilbourne@gmail.com)
4 */
5
6declare(strict_types=1);
7
8namespace pvc\struct\tree\err;
9
10use pvc\err\stock\LogicException;
11use Throwable;
12
13/**
14 * Class InvalidNodeIdException
15 */
16class InvalidNodeIdException extends LogicException
17{
18}