WebAssembly.CompileError
The WebAssembly.CompileError
object indicates an error during WebAssembly decoding or validation.
Constructor
WebAssembly.CompileError()
- : Creates a new
WebAssembly.CompileError
object.
- : Creates a new
Instance properties
{{jsxref("Error.prototype.message", "WebAssembly.CompileError.prototype.message")}}
- : Error message. Inherited from
{{jsxref("Error")}}
.
- : Error message. Inherited from
{{jsxref("Error.prototype.name", "WebAssembly.CompileError.prototype.name")}}
- : Error name. Inherited from
{{jsxref("Error")}}
.
- : Error name. Inherited from
{{jsxref("Error.prototype.cause", "WebAssembly.CompileError.prototype.cause")}}
- : Error cause. Inherited from
{{jsxref("Error")}}
.
- : Error cause. Inherited from
{{jsxref("Error.prototype.fileName", "WebAssembly.CompileError.prototype.fileName")}}
{{non-standard_inline}}
- : Path to file that raised this error. Inherited from
{{jsxref("Error")}}
.
- : Path to file that raised this error. Inherited from
{{jsxref("Error.prototype.lineNumber", "WebAssembly.CompileError.prototype.lineNumber")}}
{{non-standard_inline}}
- : Line number in file that raised this error. Inherited from
{{jsxref("Error")}}
.
- : Line number in file that raised this error. Inherited from
{{jsxref("Error.prototype.columnNumber", "WebAssembly.CompileError.prototype.columnNumber")}}
{{non-standard_inline}}
- : Column number in line that raised this error. Inherited from
{{jsxref("Error")}}
.
- : Column number in line that raised this error. Inherited from
{{jsxref("Error.prototype.stack", "WebAssembly.CompileError.prototype.stack")}}
{{non-standard_inline}}
- : Stack trace. Inherited from
{{jsxref("Error")}}
.
- : Stack trace. Inherited from
Instance methods
{{jsxref("Error.prototype.toString", "WebAssembly.CompileError.prototype.toString()")}}
- : Returns a string representing the specified
Error
object. Inherited from{{jsxref("Error")}}
.
- : Returns a string representing the specified
Examples
Creating a new CompileError instance
The following snippet creates a new CompileError
instance, and logs its details to the console:
try {
throw new WebAssembly.CompileError("Hello", "someFile", 10);
} catch (e) {
console.log(e instanceof CompileError); // true
console.log(e.message); // "Hello"
console.log(e.name); // "CompileError"
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
{{Specifications}}
Browser compatibility
{{Compat}}