Skip to main content

qubit_clock/error/
mod.rs

1// =============================================================================
2//    Copyright (c) 2025 - 2026 Haixing Hu.
3//
4//    SPDX-License-Identifier: Apache-2.0
5//
6//    Licensed under the Apache License, Version 2.0.
7// =============================================================================
8//! Error types exposed by this crate.
9
10mod time_error;
11mod timer_unavailable_error;
12
13#[cfg(feature = "tokio")]
14mod tokio_runtime_error;
15
16pub use time_error::TimeError;
17pub use timer_unavailable_error::TimerUnavailableError;
18
19#[cfg(feature = "tokio")]
20pub use tokio_runtime_error::TokioRuntimeError;