Mountain/Error/mod.rs
1#![allow(non_snake_case)]
2
3//! Local error stack. **Currently dead code** - every Mountain consumer uses
4//! `CommonLibrary::Error::CommonError` instead. Files remain in place to
5//! preserve the original taxonomy; remove or migrate when the strategy is
6//! settled.
7//!
8//! TODO: zero callers as of 2026-05-02. Either delete and rely on
9//! `CommonLibrary::Error`, or migrate consumers off `CommonError` and onto
10//! these richer per-domain types.
11
12pub mod ConfigurationError;
13pub mod CoreError;
14pub mod FileSystemError;
15pub mod IPCError;
16pub mod ProviderError;
17pub mod ServiceError;