class AggregateException in Auth0 Single Sign On 8.2
Exception thrown when too many errors occur in the some() or any() methods.
Hierarchy
- class \GuzzleHttp\Promise\RejectionException extends \GuzzleHttp\Promise\RuntimeException
- class \GuzzleHttp\Promise\AggregateException
Expanded class hierarchy of AggregateException
File
- vendor/
guzzlehttp/ promises/ src/ AggregateException.php, line 7
Namespace
GuzzleHttp\PromiseView source
class AggregateException extends RejectionException {
public function __construct($msg, array $reasons) {
parent::__construct($reasons, sprintf('%s; %d rejected promises', $msg, count($reasons)));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AggregateException:: |
public | function |
Overrides RejectionException:: |
|
RejectionException:: |
private | property | @var mixed Rejection reason. | |
RejectionException:: |
public | function | Returns the rejection reason. |