| 1 | <?php |
||
| 11 | class FieldValidationException extends \Exception |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Validator |
||
| 15 | */ |
||
| 16 | protected $validator; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get the Validator Instance |
||
| 20 | * @param Validator $validator |
||
| 21 | */ |
||
| 22 | public function __construct(Validator $validator) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get Errors Bag |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function getErrors() |
||
| 35 | } |
||
| 36 |