WebAssembly exception handling instructions.
throwThrows an exception of a specified type, as defined by a tag definition.
throw_refRethrows a previously-thrown exception represented by an exnref value.
try_tableEnables you to test a block of code to see whether it throws an exception, handling the exception with a catch clause clause if so.
catchCatches exceptions matching a specified error tag, pushing the exception payload to the stack.
catch_allCatches any exception and pushes nothing to the stack.
catch_refCatches exceptions matching a specified error tag, pushing the exception payload and an exnref value representing the exception to the stack.
catch_all_refCatches any exception and pushes an exnref value representing the exception to the stack.
exnref typetag definitionWebAssembly.Exception JavaScript interfaceWebAssembly.Tag JavaScript interface