BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
laravel
/
octane
/
src
/
Exceptions
📤 Upload
📝 New File
📁 New Folder
Close
Editing: 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."); } }
Save
Cancel