Total Complexity | 8 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
6 | class InvalidRegex extends LogicException |
||
7 | { |
||
8 | const INTERNAL_ERROR = 1; |
||
9 | const BACKTRACK_LIMIT_ERROR = 2; |
||
10 | const RECURSION_LIMIT_ERROR = 3; |
||
11 | const BAD_UTF8_ERROR = 4; |
||
12 | const BAD_UTF8_OFFSET_ERROR = 5; |
||
13 | const JIT_STACKLIMIT_ERROR = 6; |
||
14 | |||
15 | public function __construct(string $message = '', int $code = 0) |
||
45 |