//! Common imports for using erract.
//!
//! This prelude provides convenient access to the most commonly used
//! types and traits in the erract library.
//!
//! # Example
//!
//! ```ignore
//! use erract::prelude::*;
//!
//! fn example() -> erract::Result<()> {
//! Err(Error::permanent(ErrorKind::NotFound, "not found").raise())
//! .with_context("key", "value")
//! .or_raise(|| Error::temporary(ErrorKind::Unexpected, "wrapper"))
//! }
//! ```
pub use crateAddContext;
pub use crate;
pub use crate;
pub use crateErrorKind;
pub use crateErrorStatus;
pub use ;