Skip to main content

Mountain/Error/
mod.rs

1#![allow(non_snake_case)]
2
3//! Local error stack - currently unused.
4//!
5//! Every Mountain consumer uses `CommonLibrary::Error::CommonError`
6//! instead. Files remain in place to preserve the original taxonomy;
7//! remove or migrate when the strategy is settled.
8
9pub mod ConfigurationError;
10
11pub mod CoreError;
12
13pub mod FileSystemError;
14
15pub mod IPCError;
16
17pub mod ProviderError;
18
19pub mod ServiceError;