SolrException クラス

(PECL solr >= 0.9.2)

はじめに

Solr 拡張モジュールのクラスによってスローされる、全ての例外に対する基底クラスです。

クラス概要

classSolrExceptionextendsException {
protectedint$sourceline;
protectedstring$zif_name;
protectedstring$message = "";
privatestring$string = "";
protectedint$code;
protectedstring$file = "";
protectedint$line;
privatearray$trace = [];
private?Throwable$previous = null;
finalpublicException::getCode(): int
finalpublicException::getLine(): int
}

プロパティ

sourceline

例外が生成された、カーネル空間の PHP ソースファイルの行

sourcefile

例外が生成された、カーネル空間の PHP ソースファイル

zif_name

例外が生成された、カーネル空間の関数

目次

To Top