ClosedGeneratorException クラス

(PHP 5 >= 5.5.0, PHP 7, PHP 8)

はじめに

ClosedGeneratorException は 閉じられた Generator から値を取得しようとした場合にスローされます。

クラス概要

classClosedGeneratorExceptionextendsException {
protectedstring$message = "";
privatestring$string = "";
protectedint$code;
protectedstring$file = "";
protectedint$line;
privatearray$trace = [];
private?Throwable$previous = null;
publicException::__construct(string$message = "", int$code = 0, ?Throwable$previous = null)
finalpublicException::getCode(): int
finalpublicException::getLine(): int
}
To Top