qubit_config/error.rs
1/*******************************************************************************
2 *
3 * Copyright (c) 2025 - 2026.
4 * Haixing Hu, Qubit Co. Ltd.
5 *
6 * All rights reserved.
7 *
8 ******************************************************************************/
9//! # Configuration Error Types
10//!
11//! Defines all possible error types in the configuration system.
12//!
13//! # Author
14//!
15//! Haixing Hu
16
17pub use crate::config_error::ConfigError;
18
19/// Result type for configuration operations
20///
21/// Used for all operations in the configuration system that may return errors.
22pub type ConfigResult<T> = Result<T, ConfigError>;