| Conditions | 4 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | 6 | public function __construct($message = "", $code = 0, Exception $previous = null) |
|
| 15 | { |
||
| 16 | 6 | if (!is_int($code) || $code < 0 || $code > 255) { |
|
| 17 | 2 | throw new \InvalidArgumentException( |
|
| 18 | 2 | sprintf( |
|
| 19 | 2 | 'Code must be integer in range from 0 to 255, %s given', |
|
| 20 | 2 | var_export($code, true) |
|
| 21 | ) |
||
| 22 | ); |
||
| 23 | } |
||
| 24 | |||
| 25 | 4 | parent::__construct($message, $code, $previous); |
|
| 26 | 4 | } |
|
| 37 |