//! Error module
//!
//! This module defines the different types of errors that can occur in the application.
//! It includes submodules for specific error types and re-exports commonly used errors.
/// Submodule for errors related to keys.
/// Submodule for errors related to flux operations.
/// Submodule for errors related to configuration handling.
/// Re-export of `FluxError` from the `flux` submodule.
pub use crateFluxError;
/// Re-export of `ConfigError` from the `config` submodule.
pub use crateConfigError;
/// Re-export of `KeyError` from the `key` submodule.
pub use crateKeyError;