1//! Error types and traits. 2 3mod catch; 4mod error; 5mod map; 6mod never; 7 8pub use self::catch::{Catch, IntoCatch, DefaultCatch, FnCatch}; 9pub use self::error::{Error, Builder, ErrorKind}; 10pub use self::map::Map; 11pub(crate) use self::never::Never;