| 1 | <?php |
||
| 28 | class ContentException extends RuntimeException |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * @var string[] |
||
| 32 | */ |
||
| 33 | private $errors; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Set list of errors at construct |
||
| 37 | * |
||
| 38 | * @param string[] $errors Messages describing found parsing errors |
||
| 39 | */ |
||
| 40 | public function __construct(array $errors) |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return string[] |
||
| 48 | */ |
||
| 49 | public function getErrors(): array |
||
| 53 | } |
||
| 54 |