Trait concordium_std::ExpectErrReport[][src]

pub trait ExpectErrReport {
    type Unwrap;
    fn expect_err_report(self, msg: &str) -> Self::Unwrap;
}
Expand description

Analogue of the expect_err methods on Result, but useful in a Wasm setting.

Associated Types

Required methods

Like the default expect_err on, e.g., Result, but calling fail with the given message, instead of panic.

Implementations on Foreign Types

Implementors