macro_rules! error {
($code:expr, $msg:expr) => { ... };
($code:expr, $fmt:expr, $($arg:tt)*) => { ... };
}Expand description
Create an error with a code and message.
macro_rules! error {
($code:expr, $msg:expr) => { ... };
($code:expr, $fmt:expr, $($arg:tt)*) => { ... };
}Create an error with a code and message.