SongGuess
    Preparing search index...

    The WebAssembly.Exception object represents a runtime exception thrown from WebAssembly to JavaScript, or thrown from JavaScript to a WebAssembly exception handler.

    MDN Reference

    interface Exception {
        stack: string | undefined;
        getArg(exceptionTag: WebAssembly.Tag, index: number): any;
        is(exceptionTag: WebAssembly.Tag): boolean;
    }
    Index

    Properties

    Methods

    Properties

    stack: string | undefined

    The read-only stack property of an object instance of type WebAssembly.Exception may contain a stack trace.

    MDN Reference

    Methods

    • The getArg() prototype method of the Exception object can be used to get the value of a specified item in the exception's data arguments.

      MDN Reference

      Parameters

      Returns any

    • The is() prototype method of the Exception object can be used to test if the Exception matches a given tag.

      MDN Reference

      Parameters

      Returns boolean