1 | <?php |
||
11 | final class InvalidRequestPropertiesException extends \LogicException |
||
12 | { |
||
13 | /** |
||
14 | * @var ConstraintViolationListInterface |
||
15 | */ |
||
16 | private $errors; |
||
17 | |||
18 | /** |
||
19 | * InvalidRequestPropertiesException constructor. |
||
20 | * |
||
21 | * @param RequestInterface $request |
||
22 | * @param ConstraintViolationListInterface $errors |
||
23 | * @param \Exception $previous |
||
24 | */ |
||
25 | public function __construct(RequestInterface $request, ConstraintViolationListInterface $errors, \Exception $previous = null) |
||
32 | |||
33 | /** |
||
34 | * @return ConstraintViolationListInterface |
||
35 | */ |
||
36 | public function getErrors() |
||
40 | } |
||
41 |