1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Error types and traits.

mod catch;
mod error;
mod map;
mod never;

pub use self::catch::{Catch, IntoCatch, DefaultCatch, FnCatch};
pub use self::error::{Error, Builder, ErrorKind};
pub use self::map::Map;
pub(crate) use self::never::Never;