fatal

Macro fatal 

Source
macro_rules! fatal {
    ($($arg:tt)*) => { ... };
}
Expand description

fatal!() resolves to a Err(~RunError::Fatal) kind of error, and thus can be called by itself inside a Command to exit the Command with the given error and to quit the Client. It is similar to the error! macro and supports the same arguments.