Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Event/
Upload File :
Current File : //home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Event/FailEvent.php

<?php

declare(strict_types=1);

namespace Codeception\Event;

use Codeception\Test\Test;
use Throwable;

class FailEvent extends TestEvent
{
    public function __construct(Test $test, private Throwable $fail, ?float $time)
    {
        parent::__construct($test, $time);
    }

    public function getFail(): Throwable
    {
        return $this->fail;
    }
}