Yar_Server_Exception 类

(No version information available, might only be in Git)

简介

当 RPC 请求在服务器端处理失败时,在客户端抛出此异常。 如果远程服务方法本身抛出了异常,其消息、错误码、文件名、行号和类名都会被带过来, 此时 Yar_Server_Exception::getType() 返回原始异常的类名。

类摘要

class Yar_Server_Exception extends Exception {
/* 属性 */
protected string $_type = "Yar_Exception_Server";
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* 方法 */
public function getType(): string|int
/* 继承的方法 */
public function Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public function Exception::getMessage(): string
final public function Exception::getPrevious(): ?Throwable
final public function Exception::getCode(): int
final public function Exception::getFile(): string
final public function Exception::getLine(): int
final public function Exception::getTrace(): array
final public function Exception::getTraceAsString(): string
public function Exception::__toString(): string
private function Exception::__clone(): void
}

属性

_type

远程服务抛出的异常的类名;如果错误不是由用户态异常引起的, 则为 "Yar_Exception_Server"。 通过 Yar_Server_Exception::getType() 读取。

目录

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。