| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Code Lines | 3 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 20 | public function __construct( | ||
| 21 | $missingField, | ||
| 22 | $operation, | ||
| 23 | $code = 0, | ||
| 24 | Throwable $previous = null | ||
| 25 | ) | ||
| 26 |     { | ||
| 27 |         parent::__construct('Missing "' . $missingField . '" in operation data', $code, $previous); | ||
| 28 | $this->missingField = $missingField; | ||
| 29 | $this->operation = $operation; | ||
| 30 | } | ||
| 48 |