aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/InconsistentClientTransferException.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/InconsistentClientTransferException.php')
-rw-r--r--apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/InconsistentClientTransferException.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/InconsistentClientTransferException.php b/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/InconsistentClientTransferException.php
deleted file mode 100644
index 71cbc01b8c0..00000000000
--- a/apps/files_external/3rdparty/aws-sdk-php/Guzzle/Service/Exception/InconsistentClientTransferException.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-
-namespace Guzzle\Service\Exception;
-
-use Guzzle\Common\Exception\RuntimeException;
-
-/**
- * Command transfer exception when commands do not all use the same client
- */
-class InconsistentClientTransferException extends RuntimeException
-{
- /**
- * @var array Commands with an invalid client
- */
- private $invalidCommands = array();
-
- /**
- * @param array $commands Invalid commands
- */
- public function __construct(array $commands)
- {
- $this->invalidCommands = $commands;
- parent::__construct(
- 'Encountered commands in a batch transfer that use inconsistent clients. The batching ' .
- 'strategy you use with a command transfer must divide command batches by client.'
- );
- }
-
- /**
- * Get the invalid commands
- *
- * @return array
- */
- public function getCommands()
- {
- return $this->invalidCommands;
- }
-}