Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
InvalidKeyException
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * @author: Doug Wilbourne (dougwilbourne@gmail.com)
5 */
6declare (strict_types=1);
7
8namespace pvc\struct\types\err;
9
10use pvc\err\stock\LogicException;
11use Throwable;
12
13/**
14 * Class InvalidKeyException
15 */
16class InvalidKeyException extends LogicException
17{
18    public function __construct(string $invalidKey, ?Throwable $prev = null)
19    {
20        parent::__construct($invalidKey, $prev);
21    }
22}