*/ 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; } }