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
ScanDirException
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 */
6declare(strict_types=1);
7
8namespace pvc\file\err;
9
10use pvc\err\stock\RuntimeException;
11use Throwable;
12
13/**
14 * Class ScanDirException
15 */
16class ScanDirException extends RuntimeException
17{
18    public function __construct(string $filePath, Throwable $prev = null)
19    {
20        parent::__construct($filePath, $prev);
21    }
22}