Security update to Drupal 8.4.6
[yaffs-website] / vendor / guzzlehttp / promises / src / AggregateException.php
1 <?php
2 namespace GuzzleHttp\Promise;
3
4 /**
5  * Exception thrown when too many errors occur in the some() or any() methods.
6  */
7 class AggregateException extends RejectionException
8 {
9     public function __construct($msg, array $reasons)
10     {
11         parent::__construct(
12             $reasons,
13             sprintf('%s; %d rejected promises', $msg, count($reasons))
14         );
15     }
16 }