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
RegexInvalidDelimiterException
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/**
5 * @author: Doug Wilbourne (dougwilbourne@gmail.com)
6 */
7
8namespace pvc\regex\err;
9
10
11use pvc\err\stock\LogicException;
12use Throwable;
13
14/**
15 * Class RegexInvalidDelimiterException
16 */
17class RegexInvalidDelimiterException extends LogicException
18{
19    public function __construct(Throwable $prev = null)
20    {
21        parent::__construct($prev);
22    }
23}