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
DtoInvalidPropertyNameException
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\struct\dto\err;
4
5use pvc\err\stock\LogicException;
6use Throwable;
7
8class DtoInvalidPropertyNameException extends LogicException
9{
10    public function __construct(string $propertyName, ?Throwable $prev = null)
11    {
12        parent::__construct($propertyName, $prev);
13    }
14}