[][src]Module rask_wasm::error

Collection of frontend errors. These can result from network errors, other JavaScript errors or concurrency errors.

All errors implement (Display)[https://doc.rust-lang.org/std/fmt/trait.Display.html].

Examples

This example panics
use rask_wasm::error::ClientError;

return Err(ClientError::EngineError(format!("EngineError")));

Enums

ClientError