| 1 | <?php |
||
| 17 | class ValidationException extends \Exception |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var ConstraintViolationListInterface |
||
| 21 | */ |
||
| 22 | public $validations; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * ValidationException constructor. |
||
| 26 | * @param ConstraintViolationListInterface $validations |
||
| 27 | */ |
||
| 28 | public function __construct(ConstraintViolationListInterface $validations) |
||
| 32 | } |