FiberError

(PHP 8 >= 8.1.0)

Introduction

FiberError is thrown when an invalid operation is performed on a Fiber.

Class synopsis

finalclassFiberErrorextendsError {
protectedstring$message = "";
privatestring$string = "";
protectedint$code;
protectedstring$file = "";
protectedint$line;
privatearray$trace = [];
private?Throwable$previous = null;
public__construct()
finalpublicError::getCode(): int
finalpublicError::getFile(): string
finalpublicError::getLine(): int
finalpublicError::getTrace(): array
}

Table of Contents

To Top