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
InvalidDtoReflection
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
2declare(strict_types=1);
3
4namespace pvc\struct\dto\err;
5
6use pvc\err\stock\LogicException;
7use Throwable;
8
9class InvalidDtoReflection extends LogicException
10{
11    public function __construct(string $badClassString, ?Throwable $previous = null)
12    {
13        parent::__construct($badClassString, $previous);
14    }
15}