Page MenuHomeWickedGov Phorge

AggregateException.php
No OneTemporary

Size
413 B
Referenced Files
None
Subscribers
None

AggregateException.php

<?php
declare(strict_types=1);
namespace GuzzleHttp\Promise;
/**
* Exception thrown when too many errors occur in the some() or any() methods.
*/
class AggregateException extends RejectionException
{
public function __construct(string $msg, array $reasons)
{
parent::__construct(
$reasons,
sprintf('%s; %d rejected promises', $msg, count($reasons))
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 15:46 (3 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
97/7a/8cb3da78f73fb9d52c2def806f2d
Default Alt Text
AggregateException.php (413 B)

Event Timeline