//! - Wraps errors in string and error contexts.
//! - Adds help text
//! - Reports to stderr
//! - Exits with error code
use ;
/// Equivalent to:
/// ```no_run
/// serde_json::from_str(&json)
/// .wrap(|| format!("bad config file `{}`", path))
/// ```