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