summaryrefslogtreecommitdiff
path: root/Postman/Postman-Mail/mailgun/vendor/php-http/client-common/src/Exception/BatchException.php
diff options
context:
space:
mode:
Diffstat (limited to 'Postman/Postman-Mail/mailgun/vendor/php-http/client-common/src/Exception/BatchException.php')
-rw-r--r--Postman/Postman-Mail/mailgun/vendor/php-http/client-common/src/Exception/BatchException.php39
1 files changed, 0 insertions, 39 deletions
diff --git a/Postman/Postman-Mail/mailgun/vendor/php-http/client-common/src/Exception/BatchException.php b/Postman/Postman-Mail/mailgun/vendor/php-http/client-common/src/Exception/BatchException.php
deleted file mode 100644
index 66a9271..0000000
--- a/Postman/Postman-Mail/mailgun/vendor/php-http/client-common/src/Exception/BatchException.php
+++ /dev/null
@@ -1,39 +0,0 @@
-<?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;
- }
-}