Errors coming from Wasmtime. More...
#include <wasmtime.hh>
Public Member Functions | |
Error (wasmtime_error_t *error) | |
Creates an error from the raw C API representation. More... | |
std::string | message () const |
Returns the error message associated with this error. | |
std::optional< int32_t > | i32_exit () const |
Trace | trace () const |
Errors coming from Wasmtime.
This class represents an error that came from Wasmtime and contains a textual description of the error that occurred.
|
inline |
Creates an error from the raw C API representation.
Takes ownership of the provided error
.
|
inline |
If this trap represents a call to exit
for WASI, this will return the optional error code associated with the exit trap.
|
inline |
Returns the trace of WebAssembly frames associated with this error.
Note that the trace
cannot outlive this error object.