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