WebAssembly.RuntimeError() constructor - JavaScript 编辑
The WebAssembly.RuntimeError()
constructor creates a new WebAssembly RuntimeError
object — the type that is thrown whenever WebAssembly specifies a trap.
Syntax
new WebAssembly.RuntimeError(message, fileName, lineNumber)
Parameters
message
Optional- Human-readable description of the error.
fileName
Optional- The name of the file containing the code that caused the exception.
lineNumber
Optional- The line number of the code that caused the exception.
Examples
Creating a new RuntimeError instance
The following snippet creates a new RuntimeError
instance, and logs its details to the console:
try {
throw new WebAssembly.RuntimeError('Hello', 'someFile', 10);
} catch (e) {
console.log(e instanceof RuntimeError); // true
console.log(e.message); // "Hello"
console.log(e.name); // "RuntimeError"
console.log(e.fileName); // "someFile"
console.log(e.lineNumber); // 10
console.log(e.columnNumber); // 0
console.log(e.stack); // returns the location where the code was run
}
Specifications
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论