human_errors/lib.rs
1//! Errors which make your users' lives easier.
2//!
3//! Provides a framework through which you can expose error chains
4//! which include advice for how users can respond to (and hopefully
5//! resolve) a failure. Designed to make you treat recovery from failure
6//! as a fundamental part of the design process in your application.
7
8mod description;
9mod error;
10mod from;
11mod helpers;
12#[macro_use]
13mod extend;
14
15pub use description::*;
16pub use error::*;
17pub use helpers::*;