1 | <?php |
||
12 | class CommandValidationException extends Exception |
||
13 | { |
||
14 | /** |
||
15 | * @var Validator |
||
16 | */ |
||
17 | public $validator; |
||
18 | |||
19 | /** |
||
20 | * @param Validator $validator |
||
21 | */ |
||
22 | public function __construct(Validator $validator) |
||
26 | |||
27 | /** |
||
28 | * Get the errors for the exception |
||
29 | * @return MessageBag Message bad instance |
||
30 | */ |
||
31 | public function getErrors() |
||
35 | } |
||
36 |