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