cobble_core/error/
mod.rs

1mod cobble_error;
2mod download_error;
3mod installation_error;
4mod launch_error;
5
6pub use cobble_error::*;
7pub use download_error::*;
8pub use installation_error::*;
9pub use launch_error::*;
10
11#[cfg_attr(doc_cfg, doc(cfg(feature = "auth")))]
12#[cfg(feature = "auth")]
13mod auth_error;
14
15#[cfg_attr(doc_cfg, doc(cfg(feature = "auth")))]
16#[cfg(feature = "auth")]
17pub use auth_error::*;