![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/Validation/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Validation; use Magento\Framework\Exception\AggregateExceptionInterface; use Magento\Framework\Exception\LocalizedException; use Magento\Framework\Phrase; /** * Validation exception with possibility to set several error messages * * ValidationException exists to be compatible with the Web-API (SOAP and REST) implementation which currently * uses Magento\Framework\Exception\AggregateExceptionInterface returned as a result of ServiceContracts call * to support Multi-Error response. * * @api * @since 101.0.7 */ class ValidationException extends LocalizedException implements AggregateExceptionInterface { /** * @var ValidationResult|null */ private $validationResult; /** * @param Phrase $phrase * @param \Exception $cause * @param int $code * @param ValidationResult|null $validationResult */ public function __construct( Phrase $phrase, \Exception $cause = null, $code = 0, ValidationResult $validationResult = null ) { parent::__construct($phrase, $cause, $code); $this->validationResult = $validationResult; } /** * @inheritdoc * @since 101.0.7 */ public function getErrors(): array { $localizedErrors = []; if (null !== $this->validationResult) { foreach ($this->validationResult->getErrors() as $error) { $localizedErrors[] = new LocalizedException($error); } } return $localizedErrors; } }