installed plugin W3 Total Cache
version 2.3.2
This commit is contained in:
17
wp-content/plugins/w3-total-cache/vendor/guzzlehttp/promises/src/AggregateException.php
vendored
Normal file
17
wp-content/plugins/w3-total-cache/vendor/guzzlehttp/promises/src/AggregateException.php
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace GuzzleHttp\Promise;
|
||||
|
||||
/**
|
||||
* Exception thrown when too many errors occur in the some() or any() methods.
|
||||
*/
|
||||
class AggregateException extends RejectionException
|
||||
{
|
||||
public function __construct($msg, array $reasons)
|
||||
{
|
||||
parent::__construct(
|
||||
$reasons,
|
||||
sprintf('%s; %d rejected promises', $msg, count($reasons))
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user