123456789101112131415161718192021222324252627 |
- <?php
- namespace Egulias\EmailValidator\Validation;
- use Egulias\EmailValidator\Exception\InvalidEmail;
- class MultipleErrors extends InvalidEmail
- {
- const CODE = 999;
- const REASON = "Accumulated errors for multiple validations";
- /**
- * @var array
- */
- private $errors = [];
- public function __construct(array $errors)
- {
- $this->errors = $errors;
- parent::__construct();
- }
- public function getErrors()
- {
- return $this->errors;
- }
- }
|