Open Monograph Press
3.3.0
InconsistentClientTransferException.php
1
<?php
2
3
namespace
Guzzle\Service\Exception
;
4
5
use
Guzzle\Common\Exception\RuntimeException
;
6
10
class
InconsistentClientTransferException
extends
RuntimeException
11
{
15
private
$invalidCommands = array();
16
20
public
function
__construct
(array $commands)
21
{
22
$this->invalidCommands = $commands;
23
parent::__construct(
24
'Encountered commands in a batch transfer that use inconsistent clients. The batching '
.
25
'strategy you use with a command transfer must divide command batches by client.'
26
);
27
}
28
34
public
function
getCommands
()
35
{
36
return
$this->invalidCommands;
37
}
38
}
Guzzle\Service\Exception\InconsistentClientTransferException\__construct
__construct(array $commands)
Definition:
InconsistentClientTransferException.php:23
Guzzle\Service\Exception\InconsistentClientTransferException\getCommands
getCommands()
Definition:
InconsistentClientTransferException.php:37
Guzzle\Service\Exception\InconsistentClientTransferException
Definition:
InconsistentClientTransferException.php:10
Guzzle\Service\Exception
Definition:
CommandException.php:3
Guzzle\Common\Exception\RuntimeException
Definition:
lib/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php:5
plugins
paymethod
paypal
lib
vendor
guzzle
guzzle
src
Guzzle
Service
Exception
InconsistentClientTransferException.php
Generated on Fri Aug 28 2020 14:52:39 for Open Monograph Press by
1.8.17