Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/./../app/.././../../finland.picotech.app/public_html/storage/../vendor/./nikic/../dompdf/../alexandr-mironov/../monolog/../unicodeveloper/../dragonmantank/../nunomaduro/../mockery/../phar-io/../mockery/../laravel/prompts/../octane/src/RoadRunner/.././Exceptions
الملفات الموجودة في هذا الـ Path:
.
..
DdException.php
ServerShutdownException.php
TaskException.php
TaskExceptionResult.php
TaskTimeoutException.php
ValueTooLargeForColumnException.php
WorkerException.php

مشاهدة ملف: TaskTimeoutException.php

<?php

namespace Laravel\Octane\Exceptions;

use Exception;

class TaskTimeoutException extends Exception
{
    /**
     * Creates a new task timeout exception with the given milliseconds.
     *
     * @param  int  $milliseconds
     * @return static
     */
    public static function after($milliseconds)
    {
        return new static("Task timed out after $milliseconds milliseconds.");
    }
}