芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/php-http/client-common/src/Exception/BatchException.php
*/ final class BatchException extends TransferException { /** * @var BatchResult */ private $result; public function __construct(BatchResult $result) { $this->result = $result; parent::__construct(); } /** * Returns the BatchResult that contains all responses and exceptions. */ public function getResult(): BatchResult { return $this->result; } }