%PDF- %PDF-
Direktori : /home/jalalj2hb/www/G/vendor/php-http/client-common/src/Exception/ |
Current File : /home/jalalj2hb/www/G/vendor/php-http/client-common/src/Exception/BatchException.php |
<?php namespace Http\Client\Common\Exception; use Http\Client\Exception\TransferException; use Http\Client\Common\BatchResult; /** * This exception is thrown when HttpClient::sendRequests led to at least one failure. * * It gives access to a BatchResult with the request-exception and request-response pairs. * * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> */ final class BatchException extends TransferException { /** * @var BatchResult */ private $result; /** * @param BatchResult $result */ public function __construct(BatchResult $result) { $this->result = $result; } /** * Returns the BatchResult that contains all responses and exceptions. * * @return BatchResult */ public function getResult() { return $this->result; } }