SolrException 类

(PECL solr >= 0.9.2)

介绍

这是由 Solr 扩展类抛出的所有异常的基类。

类概要

class SolrException extends Exception {
/* 属性 */
protected int $sourceline;
protected string $sourcefile;
protected string $zif_name;
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* 方法 */
/* 继承的方法 */
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

属性

sourceline

生成异常的 c-space 源文件中的行

sourcefile

生成异常的 c-space 源文件

zif_name

生成异常的 c-space 函数

目录

添加备注

用户贡献的备注

此页面没有用户贡献的备注。
To Top