1//! Types and traits for error catchers and their handlers and return types. 2 3mod catcher; 4mod handler; 5 6pub use catcher::*; 7pub use handler::*;