| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace Gears\String\Exceptions; |
||
| 16 | public function __construct() |
||
| 17 | { |
||
| 18 | $errorCode = preg_last_error(); |
||
| 19 | $categorisedConstants = get_defined_constants(true); |
||
| 20 | $pcreConstants = array_flip($categorisedConstants['pcre']); |
||
| 21 | $errorMessage = $pcreConstants[$errorCode]; |
||
| 22 | parent::__construct($errorMessage, $errorCode); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |