Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 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
}