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