Eloquent\Phony\Call\Event\ThrewEvent::__construct PHP Метод

__construct() публичный Метод

Construct a 'threw' event.
public __construct ( integer $sequenceNumber, float $time, Exceptio\Exception | Erro\Error $exception )
$sequenceNumber integer The sequence number.
$time float The time at which the event occurred, in seconds since the Unix epoch.
$exception Exceptio\Exception | Erro\Error The thrown exception.
    public function __construct($sequenceNumber, $time, $exception)
    {
        parent::__construct($sequenceNumber, $time);
        $this->exception = $exception;
    }