Files
mstore/vendor/github.com/tetratelabs/wazero/internal/wasm/exception.go
T
2026-06-16 08:02:19 +02:00

10 lines
254 B
Go

package wasm
// Exception represents a thrown WebAssembly exception.
type Exception struct {
// Tag is the tag instance that was thrown.
Tag *TagInstance
// Params holds the argument values matching the tag's function type params.
Params []uint64
}