| 1 | <?php namespace App\Exceptions; |
||
| 6 | class ValidationException extends RepositoryException |
||
| 7 | { |
||
| 8 | protected $messageBag; |
||
| 9 | |||
| 10 | public function __construct(MessageBag $messageBag) |
||
| 11 | { |
||
| 12 | parent::__construct('Validation failed', RepositoryException::VALIDATION_FAILED); |
||
| 13 | |||
| 14 | $this->messageBag = clone($messageBag); |
||
| 15 | } |
||
| 16 | |||
| 17 | public function getMessageBag() |
||
| 21 | } |
||
| 22 |