FiberError

(PHP 8 >= 8.1.0)

はじめに

FiberError は、 Fiber に対して不正な操作が行われた場合にスローされます。

クラス概要

final class FiberError extends Error {
/* 継承したプロパティ */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* メソッド */
public __construct()
/* 継承したメソッド */
final public Error::getMessage(): string
final public Error::getCode(): int
final public Error::getFile(): string
final public Error::getLine(): int
final public Error::getTrace(): array
private Error::__clone(): void
}

目次

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top