macro_rules! runtime_error {
( $( $arg: tt )* ) => { ... };
}Expand description
Generate a message (in the style of format! macro), log it at level
error and raise a runtime error.
macro_rules! runtime_error {
( $( $arg: tt )* ) => { ... };
}Generate a message (in the style of format! macro), log it at level
error and raise a runtime error.