Macro hdi_extensions::guest_error

source ·
macro_rules! guest_error {
    ( $message:expr ) => { ... };
}
Expand description

Shortcut for wasm_error!(WasmErrorInner::Guest( ... ))

§Example: Basic Usage

guest_error!(format!("Something's wrong"));