1
2
3
4
5
6
7
//! Types and traits for error catchers and their handlers and return types.

mod catcher;
mod handler;

pub use catcher::*;
pub use handler::*;