//! Error handling. pub use failure::{Error, Fail}; pub type ResultS = Result; pub fn err_msg(s: &'static str) -> ResultS {Err(failure::err_msg(s))} // EOF