| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class InvalidScalarDataException extends LogicException implements ExceptionInterface, DataAwareInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | private $data; |
||
| 15 | |||
| 16 | public function __construct($data, Throwable $previous = null) |
||
| 17 | { |
||
| 18 | $this->data = $data; |
||
| 19 | parent::__construct("Invalid scalar data", 0, $previous); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getData() |
||
| 25 | } |
||
| 26 | } |
||
| 27 |