Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
InvalidLineTerminationException | 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 | declare(strict_types=1); |
6 | |
7 | namespace pvc\parser\err; |
8 | |
9 | use pvc\err\stock\LogicException; |
10 | |
11 | /** |
12 | * Class InvalidLineTerminationException |
13 | * @package pvc\parser\file\csv\err |
14 | */ |
15 | class InvalidLineTerminationException extends LogicException |
16 | { |
17 | } |