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
IncompatibleDomContentException
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
3namespace pvc\html\err;
4
5use pvc\err\stock\LogicException;
6use Throwable;
7
8class IncompatibleDomContentException extends LogicException
9{
10    public function __construct(string $domNodeName, ?Throwable $previous = null)
11    {
12        parent::__construct($domNodeName, $previous);
13    }
14}