1 | <?php |
||
7 | class ValidationFailedException extends ApiNetteException |
||
8 | { |
||
9 | /** @var ValidatorInterface */ |
||
10 | private $validator; |
||
11 | |||
12 | /** |
||
13 | * @param ValidatorInterface $validator |
||
14 | */ |
||
15 | 2 | public function __construct(ValidatorInterface $validator) |
|
20 | |||
21 | /** |
||
22 | * @return ValidatorInterface |
||
23 | */ |
||
24 | 2 | public function getValidator() |
|
28 | } |
||
29 |