[][src]Macro fehler_more::error

macro_rules! error {
    ($ e : expr) => { ... };
    ($ ($ arg : tt) *) => { ... };
}

Construct an ad-hoc exception from a string.

This evaluates to an Exception. It can take either just a string, or a format string with arguments. It also can take any custom type which implements Debug and Display.