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
DTOInvalidPropertyValueException
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/**
4 * @author: Doug Wilbourne (dougwilbourne@gmail.com)
5 */
6
7declare(strict_types=1);
8
9namespace pvc\html\err;
10
11use pvc\err\stock\LogicException;
12use pvc\err\stock\RuntimeException;
13use Throwable;
14
15/**
16 * Class DTOInvalidPropertyValueException
17 */
18class DTOInvalidPropertyValueException extends RuntimeException
19{
20    public function __construct(string $propertyName, mixed $value, string $className, Throwable $prev = null)
21    {
22        parent::__construct($propertyName, $value, $className, $prev);
23    }
24}