Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
InvalidEscapeCharacterException | 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 InvalidFieldDelimiterException |
13 | */ |
14 | class InvalidEscapeCharacterException extends LogicException |
15 | { |
16 | } |