PHP Conference Japan 2024

LuaSandboxSyntaxError 类

(PECL luasandbox >= 1.0.0)

简介

当 Lua 代码无法解析时抛出的异常。

类概要

LuaSandboxSyntaxError 扩展 LuaSandboxFatalError {
/* 继承的属性 */
受保护的 字符串 $message = "";
私有的 字符串 $string = "";
受保护的 整数 $code;
受保护的 字符串 $file = "";
受保护的 整数 $line;
私有的 数组 $trace = [];
私有的 ?Throwable $previous = null;
/* 继承的方法 */
最终的 公共的 Exception::getMessage(): 字符串
最终的 公共的 Exception::getPrevious(): ?Throwable
最终的 公共的 Exception::getCode(): 整数
最终的 公共的 Exception::getFile(): 字符串
最终的 公共的 Exception::getLine(): 整数
最终的 公共的 Exception::getTrace(): 数组
最终的 公共的 Exception::getTraceAsString(): 字符串
私有的 Exception::__clone():
}
添加注释

用户贡献的注释

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