url_cleaner_engine/tutorial/cleaner/control_flow/error_handling.rs
1//! # Error handling
2//!
3//! Various components can return errors. Usually these errors are caused by logic errors, malformed input, or network issues.
4//!
5//! When a component returns an error, usually the error is then returned by all parent components until being returned as the result of the task.
6//!
7//! However, sometimes errors can be recovered from and/or safely ignored.
8
9pub(crate) use super::*;
10
11pub mod try_else;
12pub(crate) use try_else::*;
13pub mod first_not_error;
14pub(crate) use first_not_error::*;