Win32ServiceException 类

(PECL win32service >=1.0.0)

介绍

此异常取代了旧机制,在旧机制中,需要将错误值与常量进行比较以检测哪个错误被发出。异常代码等于错误值的数值,异常消息基于相应常量的名称。

类概要

class Win32ServiceException extends Exception {
/* 继承的属性 */
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::getMessage(): string
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}
添加笔记

用户贡献的笔记

此页面没有用户贡献的笔记。
To Top