You are here

public function AggregateException::__construct in Auth0 Single Sign On 8.2

Parameters

mixed $reason Rejection reason.:

string $description Optional description:

Overrides RejectionException::__construct

File

vendor/guzzlehttp/promises/src/AggregateException.php, line 9

Class

AggregateException
Exception thrown when too many errors occur in the some() or any() methods.

Namespace

GuzzleHttp\Promise

Code

public function __construct($msg, array $reasons) {
  parent::__construct($reasons, sprintf('%s; %d rejected promises', $msg, count($reasons)));
}