human-errors 0.2.1

An error library focused on providing your users with relevant advice for any problem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Errors which make your users' lives easier.
//!
//! Provides a framework through which you can expose error chains
//! which include advice for how users can respond to (and hopefully
//! resolve) a failure. Designed to make you treat recovery from failure
//! as a fundamental part of the design process in your application.

mod error;
mod from;
mod helpers;
mod result;
mod wrapper;

pub use error::*;
pub use helpers::*;
pub use result::ResultExt;
pub use wrapper::*;