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 description;
mod error;
mod from;
mod helpers;
#[macro_use]
mod extend;

pub use description::*;
pub use error::*;
pub use helpers::*;