Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
InvalidFieldEnclosureCharException | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
1 | <?php |
2 | /** |
3 | * @author: Doug Wilbourne (dougwilbourne@gmail.com) |
4 | */ |
5 | |
6 | declare(strict_types=1); |
7 | |
8 | namespace pvc\parser\err; |
9 | |
10 | use pvc\err\stock\LogicException; |
11 | |
12 | /** |
13 | * Class InvalidFieldDelimiterException |
14 | * @package pvc\parser\file\csv\err |
15 | */ |
16 | class InvalidFieldEnclosureCharException extends LogicException |
17 | { |
18 | } |