| 1 | <?php |
||
| 8 | class ConfigValidationException extends Exception { |
||
| 9 | /** |
||
| 10 | * @var IValidationResult |
||
| 11 | */ |
||
| 12 | protected $validationResult; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * ConfigValidationException constructor. |
||
| 16 | * |
||
| 17 | * @param string $message |
||
| 18 | * @param IValidationResult $validationResult |
||
| 19 | */ |
||
| 20 | public function __construct($message, IValidationResult $validationResult) { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return IValidationResult |
||
| 28 | */ |
||
| 29 | public function getValidationResult() { |
||
| 32 | } |
||
| 33 |