mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
30 lines
607 B
PHP
30 lines
607 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
class MultiReasonException extends \Exception {
|
|
/**
|
|
* @var \Throwable[]|\Exception[]
|
|
*/
|
|
private $reasons;
|
|
|
|
/**
|
|
* @param \Exception[] $reasons Array of exceptions rejecting the awaitable.
|
|
* @param string|null $message
|
|
*/
|
|
public function __construct(array $reasons, $message = null)
|
|
{
|
|
parent::__construct($message ?: "Too many awaitables were rejected");
|
|
|
|
$this->reasons = $reasons;
|
|
}
|
|
|
|
/**
|
|
* @return \Throwable[]|\Exception[]
|
|
*/
|
|
public function getReasons()
|
|
{
|
|
return $this->reasons;
|
|
}
|
|
}
|