macro_rules! error { ($($arg:tt)*) => { ... }; }
Create an XXError with a formatted message
use xx::error; let err = error!("Failed to process file: {}", "test.txt");