qubit_error/lib.rs
1/*******************************************************************************
2 *
3 * Copyright (c) 2025 - 2026.
4 * Haixing Hu, Qubit Co. Ltd.
5 *
6 * All rights reserved.
7 *
8 ******************************************************************************/
9//! # Qubit Error
10//!
11//! Provides shared error handling helpers for Rust applications.
12//!
13//! # Author
14//!
15//! Haixing Hu
16
17pub mod lang;
18
19/// Boxed error aliases and conversion helpers.
20pub mod error {
21 pub use crate::lang::error::*;
22}
23
24pub use lang::error::{
25 BoxError,
26 BoxResult,
27 DynError,
28 IntoBoxError,
29};