Last change
on this file since f9c482b was f9c482b, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago |
Upload new project files
|
-
Property mode
set to
100644
|
File size:
413 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | declare(strict_types=1);
|
---|
4 |
|
---|
5 | namespace GuzzleHttp\Promise;
|
---|
6 |
|
---|
7 | /**
|
---|
8 | * Exception thrown when too many errors occur in the some() or any() methods.
|
---|
9 | */
|
---|
10 | class AggregateException extends RejectionException
|
---|
11 | {
|
---|
12 | public function __construct(string $msg, array $reasons)
|
---|
13 | {
|
---|
14 | parent::__construct(
|
---|
15 | $reasons,
|
---|
16 | sprintf('%s; %d rejected promises', $msg, count($reasons))
|
---|
17 | );
|
---|
18 | }
|
---|
19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.